:root, body {
  --white: 0 0% 100%;
  --gray-50: 0 0% 98%;

  --gray-100: 220 14% 96%;
  --gray-200: 220 13% 91%;
  --gray-300: 216 12% 84%;
  --gray-400: 215 20% 65%;
  --gray-500: 215 16% 47%;

  --red-100: 0 93% 94%;
  --red-200: 0 96% 89%;
  --red-500: 0 84% 60%;

  --background: var(--white);
  /* text-gray-800 */
  --foreground: 217 33% 17%;

  /* Default ShadCN, used in some components */

  --muted-foreground: 215.4 16.3% 46.9%;

  /* Unused */
  --card: 0 0% 100%;
  --card-foreground: 222.2 47.4% 11.2%;
  --input: 214.3 31.8% 91.4%;
  --info: 250.5 95.24% 91.76%;
  --info-border: 262.12 83.26% 57.84%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;

  /* Used */

  --popover: var(--background);
  --popover-foreground: var(--foreground);

  --primary: 200.4 98% 39.4%;
  --primary-foreground: var(--white);


  /* Accent is a grey accent on hovered command items, and the close button color on a dialog */
  --accent: 210 40% 96.1%;
  --accent-foreground: 222.2 47.4% 11.2%;

  --destructive: 0 100% 42%;
  --destructive-foreground: 210 40% 98%;

  --ring: 215 20.2% 65.1%;

  /*Customization specific */

  /* Text */
  /* Subclass foreground so users can override this variable */

  --i-background: var(--white);
  --i-body: var(--foreground);
  --i-heading: var(--i-body);
  /*--muted: 210 40% 96.1%;*/
  --i-muted: var(--gray-200);
  --i-muted-foreground: var(--gray-500);
  --i-border: var(--gray-200);
  --i-subtle: var(--gray-500);

  /* Common */
  --i-progress-bar: var(--i-primary);

  --i-primary: 200.4 98% 39.4%;
  --i-primary-foreground: var(--white);
  --i-danger: var(--red-100);
  --i-danger-foreground: var(--red-500);

  /* Next Button */
  --i-next-button: var(--i-primary);
  --i-next-button-foreground: var(--i-primary-foreground);
  --i-next-button-disabled: var(--i-muted);
  --i-next-button-foreground-disabled: var(--i-muted-foreground);

  /* Back button */
  --i-back-button: transparent;
  --i-back-button-foreground: var(--i-muted-foreground);

  /* Chips */
  --i-chips: var(--i-muted);
  --i-chips-foreground: var(--i-muted-foreground);

  /* Table */
  --i-table-header: var(--gray-50);
  --i-table-header-foreground: var(--i-body);
  --i-table-cell: var(--i-background);
  --i-table-cell-foreground: var(--i-body);
  --i-table-border: var(--gray-300);

  --i-info-icon: var(--i-subtle);
  --i-dropzone: var(--i-primary) / 0.06;
  --i-dropzone-overlay: var(--white) / 0.3;
  --i-dropzone-overlay-border: var(--gray-300);

  --i-row-highlight: var(--i-primary) / 0.1;
  --i-row-highlight-foreground: var(--i-table-cell-foreground);
  --i-discarded-rows: var(--gray-50);
  --i-discarded-rows-foreground: var(--i-muted-foreground);

  --i-checkmark-color: var(--i-primary);
  --i-sample-data: var(--i-muted);
  --i-sample-data-foreground: var(--i-muted-foreground);
  --i-sample-data-empty-foreground: var(--i-subtle);

  --i-cell-error: var(--i-danger);

  --i-fix-all: var(--i-primary);
  --i-fix-all-foreground: var(--i-primary-foreground);

  --i-fix-one: var(--i-background);
  --i-fix-one-foreground: var(--i-primary);

  --i-error-filter: var(--i-danger);
  --i-error-filter-foreground: var(--i-danger-foreground);
  --i-error-filter-active: var(--i-danger-foreground);
  --i-error-filter-active-foreground: var(--white);

  --i-radius-button: 6px;
  --i-radius-chip: 6px;
  --i-radius-dropdown: 6px;

  --i-body-font: 'Inter';
  --i-heading-font: 'Inter';

  --i-base-font-size: 16px;
}

body {
  color: hsl(var(--foreground));
  font-family: Inter, sans-serif;
}

#wrapper {
  color: hsl(var(--i-body));
  font-family: var(--i-body-font), sans-serif;
}

#wrapper h1,
#wrapper h2,
#wrapper h3,
#wrapper h4,
#wrapper h5,
#wrapper h6 {
  color: hsl(var(--i-heading));
  font-family: var(--i-heading-font), sans-serif;
}

/* Implementing the font face declarations in CSS TODO */

[class*=ag-theme-] {
  --ag-header-column-resize-handle-height: 100%;
  --ag-header-column-resize-handle-width: 1px;
  --ag-cell-horizontal-border: 1px solid var(--ag-secondary-border-color);
  --ag-wrapper-border-radius: 0;
  --ag-value-change-value-highlight-background-color: rgba(60, 200, 170, 0.2);;

  --ag-font-size: calc(var(--i-base-font-size) * 0.75);
  --ag-background-color: hsl(var(--i-table-cell));

  @media (min-width: 768px) {
    --ag-font-size: calc(var(--i-base-font-size) * 0.875);
  }
}

.ag-root-wrapper {
  border-color: hsl(var(--i-table-border));
}

.ag-header {
  background-color: hsl(var(--i-table-header));
  border-bottom-color: hsl(var(--i-table-border));
}

.ag-header-cell {
  color: hsl(var(--i-table-header-foreground));
}

.ag-center-cols-viewport {
  background-color: hsl(var(--i-background));
}

.ag-row {
  border-color: hsl(var(--i-table-border));
}


.ag-cell {
  background-color: hsl(var(--i-table-cell));
  color: hsl(var(--i-table-cell-foreground));
}

.ag-ltr .ag-cell {
  border-right-color: hsl(var(--i-table-border));
}

.ag-ltr .ag-cell.ag-column-first {
  background-color: hsl(var(--i-table-header));
  color: hsl(var(--i-table-header-foreground));
  text-align: center;
}

.ag-header-cell-resize::after {
  background-color: hsl(var(--i-table-border));
}

.ag-header-cell.ag-column-first {
  border-right: 1px solid hsl(var(--i-table-border));
}

.ag-root ::-webkit-scrollbar {
  /*background-color: hsl(var(--i-muted));*/
  /*align-content: baseline;*/
}

.ag-root ::-webkit-scrollbar-thumb {
  /*background: hsl(var(--i-muted-foreground));*/
  /*border-radius: 8px;*/
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.pretty-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.pretty-scrollbar::-webkit-scrollbar-track {
  background-color: transparent;
}

.pretty-scrollbar::-webkit-scrollbar-thumb {
  background-color: #bbb;
  border-radius: 20px;
}

.skeleton {
  animation: skeleton-loading 1.5s linear infinite alternate;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(200, 20%, 85%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

.ag-row-animation .ag-row {
  /* For some reason this is not the default in the css, even if it's the default in the ag-grid website preview */
  /* Default can be seen here: https://www.ag-grid.com/react-data-grid/filter-external/ (inspect element on the example)  */
  transition: transform 0.4s, top 0.4s, opacity 0.2s;
}

.ag-theme-quartz {
  --ag-row-hover-color: hsl(var(--i-row-highlight))
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.sizing-content {
  field-sizing: content;
}

/* ! tailwindcss v3.4.6 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

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

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden] {
  display: none;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media (min-width: 1400px) {

  .container {
    max-width: 1400px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.pointer-events-none {
  pointer-events: none;
}
.pointer-events-auto {
  pointer-events: auto;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.-left-\[400px\] {
  left: -400px;
}
.-top-\[4px\] {
  top: -4px;
}
.-top-\[6px\] {
  top: -6px;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-0\.5 {
  bottom: 0.125rem;
}
.bottom-auto {
  bottom: auto;
}
.left-0 {
  left: 0px;
}
.left-1\/2 {
  left: 50%;
}
.left-2 {
  left: 0.5rem;
}
.left-28 {
  left: 7rem;
}
.left-\[50\%\] {
  left: 50%;
}
.right-0 {
  right: 0px;
}
.right-1 {
  right: 0.25rem;
}
.right-3 {
  right: 0.75rem;
}
.right-4 {
  right: 1rem;
}
.top-0 {
  top: 0px;
}
.top-1\/2 {
  top: 50%;
}
.top-16 {
  top: 4rem;
}
.top-4 {
  top: 1rem;
}
.top-\[50\%\] {
  top: 50%;
}
.-z-10 {
  z-index: -10;
}
.z-10 {
  z-index: 10;
}
.z-50 {
  z-index: 50;
}
.z-\[70\] {
  z-index: 70;
}
.-mx-1 {
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.\!ml-0 {
  margin-left: 0px !important;
}
.\!mt-2 {
  margin-top: 0.5rem !important;
}
.\!mt-8 {
  margin-top: 2rem !important;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-20 {
  margin-bottom: 5rem;
}
.mb-24 {
  margin-bottom: 6rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-auto {
  margin-left: auto;
}
.mr-0 {
  margin-right: 0px;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-24 {
  margin-right: 6rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-9 {
  margin-top: 2.25rem;
}
.box-border {
  box-sizing: border-box;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.h-1\/2 {
  height: 50%;
}
.h-10 {
  height: 2.5rem;
}
.h-11 {
  height: 2.75rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-2 {
  height: 0.5rem;
}
.h-3 {
  height: 0.75rem;
}
.h-3\.5 {
  height: 0.875rem;
}
.h-4 {
  height: 1rem;
}
.h-5 {
  height: 1.25rem;
}
.h-56 {
  height: 14rem;
}
.h-6 {
  height: 1.5rem;
}
.h-7 {
  height: 1.75rem;
}
.h-8 {
  height: 2rem;
}
.h-9 {
  height: 2.25rem;
}
.h-\[0\.875rem\] {
  height: 0.875rem;
}
.h-\[150\%\] {
  height: 150%;
}
.h-\[280px\] {
  height: 280px;
}
.h-\[2px\] {
  height: 2px;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[48px\] {
  height: 48px;
}
.h-\[50px\] {
  height: 50px;
}
.h-\[81px\] {
  height: 81px;
}
.h-\[var\(--radix-select-trigger-height\)\] {
  height: var(--radix-select-trigger-height);
}
.h-auto {
  height: auto;
}
.h-full {
  height: 100%;
}
.h-px {
  height: 1px;
}
.h-screen {
  height: 100vh;
}
.max-h-96 {
  max-height: 24rem;
}
.max-h-\[300px\] {
  max-height: 300px;
}
.max-h-\[900px\] {
  max-height: 900px;
}
.max-h-screen {
  max-height: 100vh;
}
.min-h-0 {
  min-height: 0px;
}
.min-h-\[600px\] {
  min-height: 600px;
}
.min-h-\[80px\] {
  min-height: 80px;
}
.min-h-screen {
  min-height: 100vh;
}
.w-1\/2 {
  width: 50%;
}
.w-10 {
  width: 2.5rem;
}
.w-11 {
  width: 2.75rem;
}
.w-12 {
  width: 3rem;
}
.w-16 {
  width: 4rem;
}
.w-2 {
  width: 0.5rem;
}
.w-20 {
  width: 5rem;
}
.w-28 {
  width: 7rem;
}
.w-3 {
  width: 0.75rem;
}
.w-3\.5 {
  width: 0.875rem;
}
.w-32 {
  width: 8rem;
}
.w-4 {
  width: 1rem;
}
.w-40 {
  width: 10rem;
}
.w-44 {
  width: 11rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-7 {
  width: 1.75rem;
}
.w-8 {
  width: 2rem;
}
.w-9 {
  width: 2.25rem;
}
.w-96 {
  width: 24rem;
}
.w-\[--radix-popover-trigger-width\] {
  width: var(--radix-popover-trigger-width);
}
.w-\[10\%\] {
  width: 10%;
}
.w-\[100px\] {
  width: 100px;
}
.w-\[140px\] {
  width: 140px;
}
.w-\[150\%\] {
  width: 150%;
}
.w-\[20\%\] {
  width: 20%;
}
.w-\[24\%\] {
  width: 24%;
}
.w-\[25\%\] {
  width: 25%;
}
.w-\[30\%\] {
  width: 30%;
}
.w-\[300px\] {
  width: 300px;
}
.w-\[350px\] {
  width: 350px;
}
.w-\[4\%\] {
  width: 4%;
}
.w-\[40\%\] {
  width: 40%;
}
.w-\[400px\] {
  width: 400px;
}
.w-\[48\%\] {
  width: 48%;
}
.w-\[50\%\] {
  width: 50%;
}
.w-\[70\%\] {
  width: 70%;
}
.w-\[700px\] {
  width: 700px;
}
.w-\[75\%\] {
  width: 75%;
}
.w-\[8\%\] {
  width: 8%;
}
.w-\[80\%\] {
  width: 80%;
}
.w-auto {
  width: auto;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.min-w-0 {
  min-width: 0px;
}
.min-w-\[120px\] {
  min-width: 120px;
}
.min-w-\[140px\] {
  min-width: 140px;
}
.min-w-\[180px\] {
  min-width: 180px;
}
.min-w-\[200px\] {
  min-width: 200px;
}
.min-w-\[400px\] {
  min-width: 400px;
}
.min-w-\[50px\] {
  min-width: 50px;
}
.min-w-\[600px\] {
  min-width: 600px;
}
.min-w-\[8rem\] {
  min-width: 8rem;
}
.min-w-\[var\(--radix-select-trigger-width\)\] {
  min-width: var(--radix-select-trigger-width);
}
.min-w-min {
  min-width: min-content;
}
.max-w-0 {
  max-width: 0px;
}
.max-w-32 {
  max-width: 8rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-\[1000px\] {
  max-width: 1000px;
}
.max-w-\[1280px\] {
  max-width: 1280px;
}
.max-w-\[1600px\] {
  max-width: 1600px;
}
.max-w-\[30px\] {
  max-width: 30px;
}
.max-w-\[320px\] {
  max-width: 320px;
}
.max-w-\[35\%\] {
  max-width: 35%;
}
.max-w-\[412px\] {
  max-width: 412px;
}
.max-w-\[500px\] {
  max-width: 500px;
}
.max-w-\[550px\] {
  max-width: 550px;
}
.max-w-\[700px\] {
  max-width: 700px;
}
.max-w-\[800px\] {
  max-width: 800px;
}
.max-w-lg {
  max-width: 32rem;
}
.max-w-max {
  max-width: max-content;
}
.max-w-md {
  max-width: 28rem;
}
.max-w-xl {
  max-width: 36rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.grow {
  flex-grow: 1;
}
.grow-0 {
  flex-grow: 0;
}
.basis-0 {
  flex-basis: 0px;
}
.basis-1 {
  flex-basis: 0.25rem;
}
.basis-\[15\%\] {
  flex-basis: 15%;
}
.basis-\[5\%\] {
  flex-basis: 5%;
}
.basis-\[65\%\] {
  flex-basis: 65%;
}
.basis-\[calc\(33\%-12px\)\] {
  flex-basis: calc(33% - 12px);
}
.basis-\[calc\(65\%\)\] {
  flex-basis: calc(65%);
}
.table-fixed {
  table-layout: fixed;
}
.border-collapse {
  border-collapse: collapse;
}
.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-translate-y-1\/2 {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-x-\[-50\%\] {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.translate-y-\[-50\%\] {
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-45 {
  --tw-rotate: -45deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-\[0\.66\] {
  --tw-scale-x: 0.66;
  --tw-scale-y: 0.66;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse {

  50% {
    opacity: .5;
  }
}
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes spin {

  to {
    transform: rotate(360deg);
  }
}
.animate-spin {
  animation: spin 1s linear infinite;
}
.cursor-default {
  cursor: default;
}
.cursor-none {
  cursor: none;
}
.cursor-pointer {
  cursor: pointer;
}
.cursor-text {
  cursor: text;
}
.select-none {
  user-select: none;
}
.select-text {
  user-select: text;
}
.list-inside {
  list-style-position: inside;
}
.list-decimal {
  list-style-type: decimal;
}
.list-disc {
  list-style-type: disc;
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-0 {
  gap: 0px;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-y-2 {
  row-gap: 0.5rem;
}
.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1rem * var(--tw-space-x-reverse));
  margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(1.5rem * var(--tw-space-x-reverse));
  margin-left: calc(1.5rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}
.space-y-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}
.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-gray-200 > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-divide-opacity));
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.overflow-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-\[2\%\] {
  border-radius: 2%;
}
.rounded-button {
  border-radius: var(--i-radius-button);
}
.rounded-chip {
  border-radius: var(--i-radius-chip);
}
.rounded-dropdown {
  border-radius: var(--i-radius-dropdown);
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-bl-md {
  border-bottom-left-radius: 0.375rem;
}
.rounded-br-md {
  border-bottom-right-radius: 0.375rem;
}
.rounded-tl-md {
  border-top-left-radius: 0.375rem;
}
.rounded-tr-md {
  border-top-right-radius: 0.375rem;
}
.border {
  border-width: 1px;
}
.border-0 {
  border-width: 0px;
}
.border-2 {
  border-width: 2px;
}
.border-\[1\.5px\] {
  border-width: 1.5px;
}
.border-b {
  border-bottom-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-l {
  border-left-width: 1px;
}
.border-l-0 {
  border-left-width: 0px;
}
.border-l-2 {
  border-left-width: 2px;
}
.border-r {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-t-2 {
  border-top-width: 2px;
}
.border-t-\[2px\] {
  border-top-width: 2px;
}
.border-dashed {
  border-style: dashed;
}
.border-blue-400 {
  --tw-border-opacity: 1;
  border-color: rgb(96 165 250 / var(--tw-border-opacity));
}
.border-destructive {
  --tw-border-opacity: 1;
  border-color: hsl(var(--destructive) / var(--tw-border-opacity));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity));
}
.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.border-gray-600 {
  --tw-border-opacity: 1;
  border-color: rgb(75 85 99 / var(--tw-border-opacity));
}
.border-green-400 {
  --tw-border-opacity: 1;
  border-color: rgb(74 222 128 / var(--tw-border-opacity));
}
.border-i-border {
  --tw-border-opacity: 1;
  border-color: hsl(var(--i-border) / var(--tw-border-opacity));
}
.border-i-dropzone-overlay-border {
  --tw-border-opacity: 1;
  border-color: hsl(var(--i-dropzone-overlay-border) / var(--tw-border-opacity));
}
.border-i-error-filter-foreground {
  --tw-border-opacity: 1;
  border-color: hsl(var(--i-error-filter-foreground) / var(--tw-border-opacity));
}
.border-i-fix-all {
  --tw-border-opacity: 1;
  border-color: hsl(var(--i-fix-all) / var(--tw-border-opacity));
}
.border-i-fix-one-foreground {
  --tw-border-opacity: 1;
  border-color: hsl(var(--i-fix-one-foreground) / var(--tw-border-opacity));
}
.border-i-primary {
  --tw-border-opacity: 1;
  border-color: hsl(var(--i-primary) / var(--tw-border-opacity));
}
.border-primary {
  --tw-border-opacity: 1;
  border-color: hsl(var(--primary) / var(--tw-border-opacity));
}
.border-red-400 {
  --tw-border-opacity: 1;
  border-color: rgb(248 113 113 / var(--tw-border-opacity));
}
.border-red-500\/50 {
  border-color: rgb(239 68 68 / 0.5);
}
.border-sky-400 {
  --tw-border-opacity: 1;
  border-color: rgb(56 189 248 / var(--tw-border-opacity));
}
.border-slate-200 {
  --tw-border-opacity: 1;
  border-color: rgb(226 232 240 / var(--tw-border-opacity));
}
.border-slate-300 {
  --tw-border-opacity: 1;
  border-color: rgb(203 213 225 / var(--tw-border-opacity));
}
.border-slate-900 {
  --tw-border-opacity: 1;
  border-color: rgb(15 23 42 / var(--tw-border-opacity));
}
.border-transparent {
  border-color: transparent;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-b-primary {
  --tw-border-opacity: 1;
  border-bottom-color: hsl(var(--primary) / var(--tw-border-opacity));
}
.\!bg-i-discarded-rows {
  --tw-bg-opacity: 1 !important;
  background-color: hsl(var(--i-discarded-rows) / var(--tw-bg-opacity)) !important;
}
.bg-\[\#F9FAFB\] {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-background {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--background) / var(--tw-bg-opacity));
}
.bg-black\/80 {
  background-color: rgb(0 0 0 / 0.8);
}
.bg-blue-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(219 234 254 / var(--tw-bg-opacity));
}
.bg-destructive {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--destructive) / var(--tw-bg-opacity));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity));
}
.bg-green-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 252 231 / var(--tw-bg-opacity));
}
.bg-i-back-button-bg {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-back-button) / var(--tw-bg-opacity));
}
.bg-i-background {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-background) / var(--tw-bg-opacity));
}
.bg-i-border {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-border) / var(--tw-bg-opacity));
}
.bg-i-cell-error {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-cell-error) / var(--tw-bg-opacity));
}
.bg-i-chips-bg {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-chips) / var(--tw-bg-opacity));
}
.bg-i-dropzone {
  background-color: hsl(var(--i-dropzone));
}
.bg-i-dropzone-overlay {
  background-color: hsl(var(--i-dropzone-overlay));
}
.bg-i-error-filter {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-error-filter) / var(--tw-bg-opacity));
}
.bg-i-error-filter-active {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-error-filter-active) / var(--tw-bg-opacity));
}
.bg-i-fix-all {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-fix-all) / var(--tw-bg-opacity));
}
.bg-i-fix-one {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-fix-one) / var(--tw-bg-opacity));
}
.bg-i-muted {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-muted) / var(--tw-bg-opacity));
}
.bg-i-next-button {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-next-button) / var(--tw-bg-opacity));
}
.bg-i-next-button-disabled {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-next-button-disabled) / var(--tw-bg-opacity));
}
.bg-i-primary {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-primary) / var(--tw-bg-opacity));
}
.bg-i-primary\/10 {
  background-color: hsl(var(--i-primary) / 0.1);
}
.bg-i-progress-bar {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-progress-bar) / var(--tw-bg-opacity));
}
.bg-i-row-highlight {
  background-color: hsl(var(--i-row-highlight));
}
.bg-i-sample-data {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-sample-data) / var(--tw-bg-opacity));
}
.bg-popover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--popover) / var(--tw-bg-opacity));
}
.bg-primary {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--primary) / var(--tw-bg-opacity));
}
.bg-red-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 226 226 / var(--tw-bg-opacity));
}
.bg-red-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(254 202 202 / var(--tw-bg-opacity));
}
.bg-sky-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(224 242 254 / var(--tw-bg-opacity));
}
.bg-sky-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(186 230 253 / var(--tw-bg-opacity));
}
.bg-sky-300 {
  --tw-bg-opacity: 1;
  background-color: rgb(125 211 252 / var(--tw-bg-opacity));
}
.bg-sky-400 {
  --tw-bg-opacity: 1;
  background-color: rgb(56 189 248 / var(--tw-bg-opacity));
}
.bg-sky-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(240 249 255 / var(--tw-bg-opacity));
}
.bg-sky-500 {
  --tw-bg-opacity: 1;
  background-color: rgb(14 165 233 / var(--tw-bg-opacity));
}
.bg-sky-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(2 132 199 / var(--tw-bg-opacity));
}
.bg-sky-700 {
  --tw-bg-opacity: 1;
  background-color: rgb(3 105 161 / var(--tw-bg-opacity));
}
.bg-sky-800 {
  --tw-bg-opacity: 1;
  background-color: rgb(7 89 133 / var(--tw-bg-opacity));
}
.bg-sky-900 {
  --tw-bg-opacity: 1;
  background-color: rgb(12 74 110 / var(--tw-bg-opacity));
}
.bg-slate-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-white\/75 {
  background-color: rgb(255 255 255 / 0.75);
}
.bg-cover {
  background-size: cover;
}
.bg-center {
  background-position: center;
}
.fill-current {
  fill: currentColor;
}
.fill-primary {
  fill: hsl(var(--primary) / 1);
}
.stroke-2 {
  stroke-width: 2;
}
.p-0 {
  padding: 0px;
}
.p-1 {
  padding: 0.25rem;
}
.p-16 {
  padding: 4rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-32 {
  padding: 8rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-\[4px\] {
  padding: 4px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5 {
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.px-16 {
  padding-left: 4rem;
  padding-right: 4rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-px {
  padding-top: 1px;
  padding-bottom: 1px;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pl-2\.5 {
  padding-left: 0.625rem;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-2\.5 {
  padding-right: 0.625rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-8 {
  padding-right: 2rem;
}
.pt-0 {
  padding-top: 0px;
}
.pt-16 {
  padding-top: 4rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.align-middle {
  vertical-align: middle;
}
.align-text-bottom {
  vertical-align: text-bottom;
}
.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-fs-2xl {
  font-size: calc(var(--i-base-font-size) * 1.5);
  line-height: calc(var(--i-base-font-size) * 2);
}
.text-fs-lg {
  font-size: calc(var(--i-base-font-size) * 1.125);
  line-height: calc(var(--i-base-font-size) * 1.75);
}
.text-fs-sm {
  font-size: calc(var(--i-base-font-size) * 0.875);
  line-height: calc(var(--i-base-font-size) * 1.25);
}
.text-fs-xs {
  font-size: calc(var(--i-base-font-size) * 0.75);
  line-height: calc(var(--i-base-font-size) * 1.25);
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.italic {
  font-style: italic;
}
.leading-none {
  line-height: 1;
}
.leading-normal {
  line-height: 1.5;
}
.tracking-tight {
  letter-spacing: -0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgb(59 130 246 / var(--tw-text-opacity));
}
.text-current {
  color: currentColor;
}
.text-destructive-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--destructive-foreground) / var(--tw-text-opacity));
}
.text-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--foreground) / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgb(31 41 55 / var(--tw-text-opacity));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-green-600 {
  --tw-text-opacity: 1;
  color: rgb(22 163 74 / var(--tw-text-opacity));
}
.text-i-back-button-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-back-button-foreground) / var(--tw-text-opacity));
}
.text-i-body {
  --tw-text-opacity: 1;
  color: hsl(var(--i-body) / var(--tw-text-opacity));
}
.text-i-checkmark-color {
  --tw-text-opacity: 1;
  color: hsl(var(--i-checkmark-color) / var(--tw-text-opacity));
}
.text-i-chips-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-chips-foreground) / var(--tw-text-opacity));
}
.text-i-danger-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-danger-foreground) / var(--tw-text-opacity));
}
.text-i-discarded-rows-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-discarded-rows-foreground) / var(--tw-text-opacity));
}
.text-i-error-filter-active-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-error-filter-active-foreground) / var(--tw-text-opacity));
}
.text-i-error-filter-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-error-filter-foreground) / var(--tw-text-opacity));
}
.text-i-fix-all-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-fix-all-foreground) / var(--tw-text-opacity));
}
.text-i-fix-one-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-fix-one-foreground) / var(--tw-text-opacity));
}
.text-i-info-icon {
  --tw-text-opacity: 1;
  color: hsl(var(--i-info-icon) / var(--tw-text-opacity));
}
.text-i-muted {
  --tw-text-opacity: 1;
  color: hsl(var(--i-muted) / var(--tw-text-opacity));
}
.text-i-muted-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-muted-foreground) / var(--tw-text-opacity));
}
.text-i-next-button-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-next-button-foreground) / var(--tw-text-opacity));
}
.text-i-next-button-foreground-disabled {
  --tw-text-opacity: 1;
  color: hsl(var(--i-next-button-foreground-disabled) / var(--tw-text-opacity));
}
.text-i-primary {
  --tw-text-opacity: 1;
  color: hsl(var(--i-primary) / var(--tw-text-opacity));
}
.text-i-row-highlight-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-row-highlight-foreground) / var(--tw-text-opacity));
}
.text-i-sample-data-empty-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-sample-data-empty-foreground) / var(--tw-text-opacity));
}
.text-i-sample-data-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--i-sample-data-foreground) / var(--tw-text-opacity));
}
.text-i-subtle {
  --tw-text-opacity: 1;
  color: hsl(var(--i-subtle) / var(--tw-text-opacity));
}
.text-popover-foreground {
  --tw-text-opacity: 1;
  color: hsl(var(--popover-foreground) / var(--tw-text-opacity));
}
.text-primary {
  --tw-text-opacity: 1;
  color: hsl(var(--primary) / var(--tw-text-opacity));
}
.text-red-400 {
  --tw-text-opacity: 1;
  color: rgb(248 113 113 / var(--tw-text-opacity));
}
.text-red-500 {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.text-red-600 {
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity));
}
.text-sky-600 {
  --tw-text-opacity: 1;
  color: rgb(2 132 199 / var(--tw-text-opacity));
}
.text-slate-500 {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}
.text-slate-950 {
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity));
}
.text-violet-600 {
  --tw-text-opacity: 1;
  color: rgb(124 58 237 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.\!opacity-100 {
  opacity: 1 !important;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.opacity-50 {
  opacity: 0.5;
}
.opacity-60 {
  opacity: 0.6;
}
.opacity-70 {
  opacity: 0.7;
}
.opacity-\[0\.3\] {
  opacity: 0.3;
}
.opacity-\[0\.7\] {
  opacity: 0.7;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_0_0_2px_gray\] {
  --tw-shadow: 0 0 0 2px gray;
  --tw-shadow-colored: 0 0 0 2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_2px_12px_-4px_rgb\(0\2c 0\2c 0\2c 0\.2\)\] {
  --tw-shadow: 0 2px 12px -4px rgb(0,0,0,0.2);
  --tw-shadow-colored: 0 2px 12px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.outline {
  outline-style: solid;
}
.ring-0 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-gray-700 {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(55 65 81 / var(--tw-ring-opacity));
}
.ring-offset-background {
  --tw-ring-offset-color: hsl(var(--background) / 1);
}
.ring-offset-white {
  --tw-ring-offset-color: #fff;
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.\!transition-all {
  transition-property: all !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[background-color\] {
  transition-property: background-color;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[filter\] {
  transition-property: filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[left\] {
  transition-property: left;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[width\] {
  transition-property: width;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.\!duration-200 {
  transition-duration: 200ms !important;
}
.duration-100 {
  transition-duration: 100ms;
}
.duration-200 {
  transition-duration: 200ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
@keyframes enter {

  from {
    opacity: var(--tw-enter-opacity, 1);
    transform: translate3d(var(--tw-enter-translate-x, 0), var(--tw-enter-translate-y, 0), 0) scale3d(var(--tw-enter-scale, 1), var(--tw-enter-scale, 1), var(--tw-enter-scale, 1)) rotate(var(--tw-enter-rotate, 0));
  }
}
@keyframes exit {

  to {
    opacity: var(--tw-exit-opacity, 1);
    transform: translate3d(var(--tw-exit-translate-x, 0), var(--tw-exit-translate-y, 0), 0) scale3d(var(--tw-exit-scale, 1), var(--tw-exit-scale, 1), var(--tw-exit-scale, 1)) rotate(var(--tw-exit-rotate, 0));
  }
}
.\!duration-200 {
  animation-duration: 200ms !important;
}
.duration-100 {
  animation-duration: 100ms;
}
.duration-200 {
  animation-duration: 200ms;
}
.duration-300 {
  animation-duration: 300ms;
}
.duration-500 {
  animation-duration: 500ms;
}
.file\:border-0::file-selector-button {
  border-width: 0px;
}
.file\:bg-transparent::file-selector-button {
  background-color: transparent;
}
.file\:text-sm::file-selector-button {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.file\:font-medium::file-selector-button {
  font-weight: 500;
}
.placeholder\:text-i-muted-foreground::placeholder {
  --tw-text-opacity: 1;
  color: hsl(var(--i-muted-foreground) / var(--tw-text-opacity));
}
.placeholder\:text-slate-500::placeholder {
  --tw-text-opacity: 1;
  color: rgb(100 116 139 / var(--tw-text-opacity));
}
.after\:absolute::after {
  content: var(--tw-content);
  position: absolute;
}
.after\:left-0::after {
  content: var(--tw-content);
  left: 0px;
}
.after\:top-0::after {
  content: var(--tw-content);
  top: 0px;
}
.after\:h-full::after {
  content: var(--tw-content);
  height: 100%;
}
.after\:w-full::after {
  content: var(--tw-content);
  width: 100%;
}
.after\:bg-i-row-highlight::after {
  content: var(--tw-content);
  background-color: hsl(var(--i-row-highlight));
}
.first\:rounded-bl-lg:first-child {
  border-bottom-left-radius: 0.5rem;
}
.first\:rounded-tl-lg:first-child {
  border-top-left-radius: 0.5rem;
}
.last\:mb-0:last-child {
  margin-bottom: 0px;
}
.last\:rounded-br-lg:last-child {
  border-bottom-right-radius: 0.5rem;
}
.last\:rounded-tr-lg:last-child {
  border-top-right-radius: 0.5rem;
}
.last\:border-0:last-child {
  border-width: 0px;
}
.hover\:bg-accent:hover {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--accent) / var(--tw-bg-opacity));
}
.hover\:bg-blue-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(239 246 255 / var(--tw-bg-opacity));
}
.hover\:bg-destructive\/90:hover {
  background-color: hsl(var(--destructive) / 0.9);
}
.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.hover\:bg-gray-200:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.hover\:bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}
.hover\:bg-gray-400:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity));
}
.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.hover\:bg-i-next-button\/90:hover {
  background-color: hsl(var(--i-next-button) / 0.9);
}
.hover\:bg-i-primary\/90:hover {
  background-color: hsl(var(--i-primary) / 0.9);
}
.hover\:bg-primary\/90:hover {
  background-color: hsl(var(--primary) / 0.9);
}
.hover\:text-accent-foreground:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--accent-foreground) / var(--tw-text-opacity));
}
.hover\:text-primary:hover {
  --tw-text-opacity: 1;
  color: hsl(var(--primary) / var(--tw-text-opacity));
}
.hover\:opacity-100:hover {
  opacity: 1;
}
.hover\:brightness-\[0\.94\]:hover {
  --tw-brightness: brightness(0.94);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.focus\:border-b-primary:focus {
  --tw-border-opacity: 1;
  border-bottom-color: hsl(var(--primary) / var(--tw-border-opacity));
}
.focus\:bg-slate-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
}
.focus\:text-slate-900:focus {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity));
}
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus\:outline-0:focus {
  outline-width: 0px;
}
.focus\:outline-gray-400:focus {
  outline-color: #9ca3af;
}
.focus\:ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus\:ring-ring:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--ring) / var(--tw-ring-opacity));
}
.focus\:ring-slate-950:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity));
}
.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}
.focus-visible\:outline-none:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}
.focus-visible\:outline-gray-400:focus-visible {
  outline-color: #9ca3af;
}
.focus-visible\:ring-1:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.focus-visible\:ring-ring:focus-visible {
  --tw-ring-opacity: 1;
  --tw-ring-color: hsl(var(--ring) / var(--tw-ring-opacity));
}
.focus-visible\:ring-slate-950:focus-visible {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(2 6 23 / var(--tw-ring-opacity));
}
.focus-visible\:ring-offset-2:focus-visible {
  --tw-ring-offset-width: 2px;
}
.focus-visible\:ring-offset-white:focus-visible {
  --tw-ring-offset-color: #fff;
}
.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}
.disabled\:cursor-default:disabled {
  cursor: default;
}
.disabled\:cursor-not-allowed:disabled {
  cursor: not-allowed;
}
.disabled\:bg-gray-200:disabled {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.disabled\:text-gray-500:disabled {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}
.group:hover .group-hover\:\!bg-transparent {
  background-color: transparent !important;
}
.group:hover .group-hover\:opacity-60 {
  opacity: 0.6;
}
.peer:disabled ~ .peer-disabled\:cursor-not-allowed {
  cursor: not-allowed;
}
.peer:disabled ~ .peer-disabled\:opacity-70 {
  opacity: 0.7;
}
.data-\[disabled\=true\]\:pointer-events-none[data-disabled=true] {
  pointer-events: none;
}
.data-\[disabled\]\:pointer-events-none[data-disabled] {
  pointer-events: none;
}
.data-\[side\=bottom\]\:translate-y-1[data-side=bottom] {
  --tw-translate-y: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=left\]\:-translate-x-1[data-side=left] {
  --tw-translate-x: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=right\]\:translate-x-1[data-side=right] {
  --tw-translate-x: 0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[side\=top\]\:-translate-y-1[data-side=top] {
  --tw-translate-y: -0.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=checked\]\:translate-x-5[data-state=checked] {
  --tw-translate-x: 1.25rem;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.data-\[state\=unchecked\]\:translate-x-0[data-state=unchecked] {
  --tw-translate-x: 0px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes accordion-up {

  from {
    height: var(--radix-accordion-content-height);
  }

  to {
    height: 0;
  }
}
.data-\[state\=closed\]\:animate-accordion-up[data-state=closed] {
  animation: accordion-up 0.2s ease-out;
}
@keyframes accordion-down {

  from {
    height: 0;
  }

  to {
    height: var(--radix-accordion-content-height);
  }
}
.data-\[state\=open\]\:animate-accordion-down[data-state=open] {
  animation: accordion-down 0.2s ease-out;
}
.data-\[selected\=true\]\:bg-accent[data-selected=true] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--accent) / var(--tw-bg-opacity));
}
.data-\[selected\=true\]\:bg-i-muted[data-selected=true] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-muted) / var(--tw-bg-opacity));
}
.data-\[state\=checked\]\:bg-primary[data-state=checked] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--primary) / var(--tw-bg-opacity));
}
.data-\[state\=checked\]\:bg-slate-900[data-state=checked] {
  --tw-bg-opacity: 1;
  background-color: rgb(15 23 42 / var(--tw-bg-opacity));
}
.data-\[state\=open\]\:bg-accent[data-state=open] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--accent) / var(--tw-bg-opacity));
}
.data-\[state\=open\]\:bg-i-subtle[data-state=open] {
  --tw-bg-opacity: 1;
  background-color: hsl(var(--i-subtle) / var(--tw-bg-opacity));
}
.data-\[state\=open\]\:bg-slate-100[data-state=open] {
  --tw-bg-opacity: 1;
  background-color: rgb(241 245 249 / var(--tw-bg-opacity));
}
.data-\[state\=unchecked\]\:bg-slate-200[data-state=unchecked] {
  --tw-bg-opacity: 1;
  background-color: rgb(226 232 240 / var(--tw-bg-opacity));
}
.data-\[selected\=true\]\:text-accent-foreground[data-selected=true] {
  --tw-text-opacity: 1;
  color: hsl(var(--accent-foreground) / var(--tw-text-opacity));
}
.data-\[selected\=true\]\:text-i-body[data-selected=true] {
  --tw-text-opacity: 1;
  color: hsl(var(--i-body) / var(--tw-text-opacity));
}
.data-\[state\=checked\]\:text-slate-50[data-state=checked] {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity));
}
.data-\[state\=open\]\:text-i-muted-foreground[data-state=open] {
  --tw-text-opacity: 1;
  color: hsl(var(--i-muted-foreground) / var(--tw-text-opacity));
}
.data-\[disabled\=true\]\:opacity-50[data-disabled=true] {
  opacity: 0.5;
}
.data-\[disabled\]\:opacity-50[data-disabled] {
  opacity: 0.5;
}
.data-\[state\=open\]\:animate-in[data-state=open] {
  animation-name: enter;
  animation-duration: 150ms;
  --tw-enter-opacity: initial;
  --tw-enter-scale: initial;
  --tw-enter-rotate: initial;
  --tw-enter-translate-x: initial;
  --tw-enter-translate-y: initial;
}
.data-\[state\=closed\]\:animate-out[data-state=closed] {
  animation-name: exit;
  animation-duration: 150ms;
  --tw-exit-opacity: initial;
  --tw-exit-scale: initial;
  --tw-exit-rotate: initial;
  --tw-exit-translate-x: initial;
  --tw-exit-translate-y: initial;
}
.data-\[state\=closed\]\:fade-out-0[data-state=closed] {
  --tw-exit-opacity: 0;
}
.data-\[state\=open\]\:fade-in-0[data-state=open] {
  --tw-enter-opacity: 0;
}
.data-\[state\=closed\]\:zoom-out-95[data-state=closed] {
  --tw-exit-scale: .95;
}
.data-\[state\=open\]\:zoom-in-95[data-state=open] {
  --tw-enter-scale: .95;
}
.data-\[side\=bottom\]\:slide-in-from-top-2[data-side=bottom] {
  --tw-enter-translate-y: -0.5rem;
}
.data-\[side\=left\]\:slide-in-from-right-2[data-side=left] {
  --tw-enter-translate-x: 0.5rem;
}
.data-\[side\=right\]\:slide-in-from-left-2[data-side=right] {
  --tw-enter-translate-x: -0.5rem;
}
.data-\[side\=top\]\:slide-in-from-bottom-2[data-side=top] {
  --tw-enter-translate-y: 0.5rem;
}
.data-\[state\=closed\]\:slide-out-to-left-1\/2[data-state=closed] {
  --tw-exit-translate-x: -50%;
}
.data-\[state\=closed\]\:slide-out-to-top-\[48\%\][data-state=closed] {
  --tw-exit-translate-y: -48%;
}
.data-\[state\=open\]\:slide-in-from-left-1\/2[data-state=open] {
  --tw-enter-translate-x: -50%;
}
.data-\[state\=open\]\:slide-in-from-top-\[48\%\][data-state=open] {
  --tw-enter-translate-y: -48%;
}
@media (min-width: 640px) {

  .sm\:block {
    display: block;
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:justify-end {
    justify-content: flex-end;
  }

  .sm\:space-x-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(0.5rem * var(--tw-space-x-reverse));
    margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .sm\:rounded-lg {
    border-radius: 0.5rem;
  }

  .sm\:text-left {
    text-align: left;
  }
}
@media (min-width: 768px) {

  .md\:mr-8 {
    margin-right: 2rem;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:table-cell {
    display: table-cell;
  }

  .md\:hidden {
    display: none;
  }

  .md\:h-10 {
    height: 2.5rem;
  }

  .md\:w-\[25\%\] {
    width: 25%;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-stretch {
    align-items: stretch;
  }

  .md\:space-x-16 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(4rem * var(--tw-space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .md\:rounded-2xl {
    border-radius: 1rem;
  }

  .md\:rounded-none {
    border-radius: 0px;
  }

  .md\:px-16 {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .md\:px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .md\:px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .md\:py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .md\:py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-fs-2xl {
    font-size: calc(var(--i-base-font-size) * 1.5);
    line-height: calc(var(--i-base-font-size) * 2);
  }

  .md\:text-fs-base {
    font-size: calc(var(--i-base-font-size) * 1);
    line-height: calc(var(--i-base-font-size) * 1.5);
  }

  .md\:text-fs-lg {
    font-size: calc(var(--i-base-font-size) * 1.125);
    line-height: calc(var(--i-base-font-size) * 1.75);
  }

  .md\:text-fs-sm {
    font-size: calc(var(--i-base-font-size) * 0.875);
    line-height: calc(var(--i-base-font-size) * 1.25);
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
}
@media (min-width: 1024px) {

  .lg\:-top-\[6px\] {
    top: -6px;
  }

  .lg\:\!-my-8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .lg\:mx-6 {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }

  .lg\:mb-32 {
    margin-bottom: 8rem;
  }

  .lg\:mb-4 {
    margin-bottom: 1rem;
  }

  .lg\:mr-16 {
    margin-right: 4rem;
  }

  .lg\:mt-12 {
    margin-top: 3rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-12 {
    height: 3rem;
  }

  .lg\:h-16 {
    height: 4rem;
  }

  .lg\:min-h-\[48px\] {
    min-height: 48px;
  }

  .lg\:w-auto {
    width: auto;
  }

  .lg\:max-w-lg {
    max-width: 32rem;
  }

  .lg\:max-w-md {
    max-width: 28rem;
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:space-x-16 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(4rem * var(--tw-space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .lg\:space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0px * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0px * var(--tw-space-y-reverse));
  }

  .lg\:overflow-x-auto {
    overflow-x: auto;
  }

  .lg\:rounded-lg {
    border-radius: 0.5rem;
  }

  .lg\:rounded-none {
    border-radius: 0px;
  }

  .lg\:border-l-0 {
    border-left-width: 0px;
  }

  .lg\:border-r-0 {
    border-right-width: 0px;
  }

  .lg\:border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity));
  }

  .lg\:p-8 {
    padding: 2rem;
  }

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .lg\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .lg\:pb-32 {
    padding-bottom: 8rem;
  }

  .lg\:pt-24 {
    padding-top: 6rem;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .lg\:first\:rounded-bl-lg:first-child {
    border-bottom-left-radius: 0.5rem;
  }

  .lg\:first\:rounded-tl-lg:first-child {
    border-top-left-radius: 0.5rem;
  }

  .lg\:last\:rounded-br-lg:last-child {
    border-bottom-right-radius: 0.5rem;
  }

  .lg\:last\:rounded-tr-lg:last-child {
    border-top-right-radius: 0.5rem;
  }
}
@media (min-width: 1280px) {

  .xl\:block {
    display: block;
  }

  .xl\:space-x-16 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(4rem * var(--tw-space-x-reverse));
    margin-left: calc(4rem * calc(1 - var(--tw-space-x-reverse)));
  }

  .xl\:px-32 {
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
.dark\:border-red-500:where(.dark, .dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity));
}
.dark\:border-red-900\/50:where(.dark, .dark *) {
  border-color: rgb(127 29 29 / 0.5);
}
.dark\:border-slate-800:where(.dark, .dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(30 41 59 / var(--tw-border-opacity));
}
.dark\:dark\:border-red-900:where(.dark, .dark *):where(.dark, .dark *) {
  --tw-border-opacity: 1;
  border-color: rgb(127 29 29 / var(--tw-border-opacity));
}
.dark\:bg-slate-800:where(.dark, .dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity));
}
.dark\:bg-slate-950:where(.dark, .dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(2 6 23 / var(--tw-bg-opacity));
}
.dark\:text-red-900:where(.dark, .dark *) {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity));
}
.dark\:text-slate-400:where(.dark, .dark *) {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity));
}
.dark\:text-slate-50:where(.dark, .dark *) {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity));
}
.dark\:ring-offset-slate-950:where(.dark, .dark *) {
  --tw-ring-offset-color: #020617;
}
.dark\:placeholder\:text-slate-400:where(.dark, .dark *)::placeholder {
  --tw-text-opacity: 1;
  color: rgb(148 163 184 / var(--tw-text-opacity));
}
.dark\:focus\:bg-slate-800:focus:where(.dark, .dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity));
}
.dark\:focus\:text-slate-50:focus:where(.dark, .dark *) {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity));
}
.dark\:focus\:ring-slate-300:focus:where(.dark, .dark *) {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity));
}
.dark\:focus-visible\:ring-slate-300:focus-visible:where(.dark, .dark *) {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(203 213 225 / var(--tw-ring-opacity));
}
.dark\:data-\[state\=checked\]\:bg-slate-50[data-state=checked]:where(.dark, .dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(248 250 252 / var(--tw-bg-opacity));
}
.dark\:data-\[state\=open\]\:bg-slate-800[data-state=open]:where(.dark, .dark *) {
  --tw-bg-opacity: 1;
  background-color: rgb(30 41 59 / var(--tw-bg-opacity));
}
.dark\:data-\[state\=checked\]\:text-slate-900[data-state=checked]:where(.dark, .dark *) {
  --tw-text-opacity: 1;
  color: rgb(15 23 42 / var(--tw-text-opacity));
}
.\[\&\>span\]\:line-clamp-1>span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.\[\&\>svg\+div\]\:translate-y-\[-3px\]>svg+div {
  --tw-translate-y: -3px;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&\>svg\]\:absolute>svg {
  position: absolute;
}
.\[\&\>svg\]\:left-4>svg {
  left: 1rem;
}
.\[\&\>svg\]\:top-4>svg {
  top: 1rem;
}
.\[\&\>svg\]\:text-red-500>svg {
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity));
}
.\[\&\>svg\]\:text-slate-950>svg {
  --tw-text-opacity: 1;
  color: rgb(2 6 23 / var(--tw-text-opacity));
}
.dark\:\[\&\>svg\]\:text-red-900>svg:where(.dark, .dark *) {
  --tw-text-opacity: 1;
  color: rgb(127 29 29 / var(--tw-text-opacity));
}
.dark\:\[\&\>svg\]\:text-slate-50>svg:where(.dark, .dark *) {
  --tw-text-opacity: 1;
  color: rgb(248 250 252 / var(--tw-text-opacity));
}
.\[\&\>svg\~\*\]\:pl-7>svg~* {
  padding-left: 1.75rem;
}
.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.\[\&_\[cmdk-group-heading\]\]\:px-2 [cmdk-group-heading] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-group-heading\]\]\:py-1\.5 [cmdk-group-heading] {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.\[\&_\[cmdk-group-heading\]\]\:text-fs-xs [cmdk-group-heading] {
  font-size: calc(var(--i-base-font-size) * 0.75);
  line-height: calc(var(--i-base-font-size) * 1.25);
}
.\[\&_\[cmdk-group-heading\]\]\:text-xs [cmdk-group-heading] {
  font-size: 0.75rem;
  line-height: 1rem;
}
.\[\&_\[cmdk-group-heading\]\]\:font-medium [cmdk-group-heading] {
  font-weight: 500;
}
.\[\&_\[cmdk-group-heading\]\]\:text-i-muted-foreground [cmdk-group-heading] {
  --tw-text-opacity: 1;
  color: hsl(var(--i-muted-foreground) / var(--tw-text-opacity));
}
.\[\&_\[cmdk-group\]\:not\(\[hidden\]\)_\~\[cmdk-group\]\]\:pt-0 [cmdk-group]:not([hidden]) ~[cmdk-group] {
  padding-top: 0px;
}
.\[\&_\[cmdk-group\]\]\:px-2 [cmdk-group] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-input-wrapper\]_svg\]\:h-5 [cmdk-input-wrapper] svg {
  height: 1.25rem;
}
.\[\&_\[cmdk-input-wrapper\]_svg\]\:w-5 [cmdk-input-wrapper] svg {
  width: 1.25rem;
}
.\[\&_\[cmdk-input\]\]\:h-12 [cmdk-input] {
  height: 3rem;
}
.\[\&_\[cmdk-item\]\]\:px-2 [cmdk-item] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.\[\&_\[cmdk-item\]\]\:py-3 [cmdk-item] {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.\[\&_\[cmdk-item\]_svg\]\:h-5 [cmdk-item] svg {
  height: 1.25rem;
}
.\[\&_\[cmdk-item\]_svg\]\:w-5 [cmdk-item] svg {
  width: 1.25rem;
}
.\[\&_p\]\:leading-relaxed p {
  line-height: 1.625;
}


ol.lst-kix_list_7-0 {
  list-style-type: none
}

.lst-kix_list_21-8 > li {
  counter-increment: lst-ctn-kix_list_21-8
}

ol.lst-kix_list_33-5.start {
  counter-reset: lst-ctn-kix_list_33-5 0
}

ol.lst-kix_list_9-0.start {
  counter-reset: lst-ctn-kix_list_9-0 0
}

ol.lst-kix_list_30-0.start {
  counter-reset: lst-ctn-kix_list_30-0 0
}

ol.lst-kix_list_13-4.start {
  counter-reset: lst-ctn-kix_list_13-4 0
}

.lst-kix_list_30-6 > li {
  counter-increment: lst-ctn-kix_list_30-6
}

.lst-kix_list_13-0 > li {
  counter-increment: lst-ctn-kix_list_13-0
}

ol.lst-kix_list_20-2.start {
  counter-reset: lst-ctn-kix_list_20-2 0
}

.lst-kix_list_5-0 > li {
  counter-increment: lst-ctn-kix_list_5-0
}

ol.lst-kix_list_7-5 {
  list-style-type: none
}

ol.lst-kix_list_7-6 {
  list-style-type: none
}

ol.lst-kix_list_7-7 {
  list-style-type: none
}

ol.lst-kix_list_7-8 {
  list-style-type: none
}

ol.lst-kix_list_7-1 {
  list-style-type: none
}

ol.lst-kix_list_7-2 {
  list-style-type: none
}

ol.lst-kix_list_7-3 {
  list-style-type: none
}

ol.lst-kix_list_7-4 {
  list-style-type: none
}

ol.lst-kix_list_23-2.start {
  counter-reset: lst-ctn-kix_list_23-2 0
}

ol.lst-kix_list_5-3.start {
  counter-reset: lst-ctn-kix_list_5-3 0
}

ol.lst-kix_list_17-1.start {
  counter-reset: lst-ctn-kix_list_17-1 0
}

.lst-kix_list_35-7 > li {
  counter-increment: lst-ctn-kix_list_35-7
}

.lst-kix_list_29-8 > li {
  counter-increment: lst-ctn-kix_list_29-8
}

.lst-kix_list_24-7 > li {
  counter-increment: lst-ctn-kix_list_24-7
}

ol.lst-kix_list_30-5.start {
  counter-reset: lst-ctn-kix_list_30-5 0
}

.lst-kix_list_18-8 > li {
  counter-increment: lst-ctn-kix_list_18-8
}

ol.lst-kix_list_8-8.start {
  counter-reset: lst-ctn-kix_list_8-8 0
}

ol.lst-kix_list_26-7.start {
  counter-reset: lst-ctn-kix_list_26-7 0
}

ol.lst-kix_list_10-4.start {
  counter-reset: lst-ctn-kix_list_10-4 0
}

.lst-kix_list_7-2 > li {
  counter-increment: lst-ctn-kix_list_7-2
}

.lst-kix_list_24-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_24-7, lower-latin) ") "
}

ol.lst-kix_list_16-5 {
  list-style-type: none
}

ol.lst-kix_list_16-6 {
  list-style-type: none
}

.lst-kix_list_24-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_24-8, lower-roman) ") "
}

ol.lst-kix_list_16-7 {
  list-style-type: none
}

ol.lst-kix_list_16-8 {
  list-style-type: none
}

ol.lst-kix_list_9-5.start {
  counter-reset: lst-ctn-kix_list_9-5 0
}

ol.lst-kix_list_16-1 {
  list-style-type: none
}

ol.lst-kix_list_16-2 {
  list-style-type: none
}

ol.lst-kix_list_16-3 {
  list-style-type: none
}

ol.lst-kix_list_16-4 {
  list-style-type: none
}

.lst-kix_list_24-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_24-2, lower-latin) ") "
}

ol.lst-kix_list_16-0 {
  list-style-type: none
}

ol.lst-kix_list_20-7.start {
  counter-reset: lst-ctn-kix_list_20-7 0
}

.lst-kix_list_24-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_24-3, lower-roman) ") "
}

.lst-kix_list_24-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_24-4, decimal) ") "
}

ol.lst-kix_list_34-2.start {
  counter-reset: lst-ctn-kix_list_34-2 0
}

.lst-kix_list_9-4 > li {
  counter-increment: lst-ctn-kix_list_9-4
}

.lst-kix_list_24-5 > li:before {
  content: "" counter(lst-ctn-kix_list_24-5, lower-latin) ". "
}

.lst-kix_list_24-6 > li:before {
  content: "" counter(lst-ctn-kix_list_24-6, lower-roman) ". "
}

ol.lst-kix_list_16-4.start {
  counter-reset: lst-ctn-kix_list_16-4 0
}

ol.lst-kix_list_14-1.start {
  counter-reset: lst-ctn-kix_list_14-1 0
}

.lst-kix_list_23-6 > li:before {
  content: "" counter(lst-ctn-kix_list_23-6, lower-roman) ". "
}

.lst-kix_list_6-5 > li {
  counter-increment: lst-ctn-kix_list_6-5
}

ol.lst-kix_list_27-6 {
  list-style-type: none
}

ol.lst-kix_list_27-5 {
  list-style-type: none
}

ol.lst-kix_list_27-8 {
  list-style-type: none
}

.lst-kix_list_23-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_23-3, lower-roman) ") "
}

.lst-kix_list_23-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_23-7, lower-latin) ") "
}

ol.lst-kix_list_27-7 {
  list-style-type: none
}

ol.lst-kix_list_27-2 {
  list-style-type: none
}

.lst-kix_list_23-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_23-2, lower-latin) ") "
}

ol.lst-kix_list_27-1 {
  list-style-type: none
}

ol.lst-kix_list_23-7.start {
  counter-reset: lst-ctn-kix_list_23-7 0
}

ol.lst-kix_list_27-4 {
  list-style-type: none
}

ol.lst-kix_list_27-3 {
  list-style-type: none
}

.lst-kix_list_23-0 > li:before {
  content: "" counter(lst-ctn-kix_list_23-0, decimal) ". "
}

.lst-kix_list_23-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_23-8, lower-roman) ") "
}

ol.lst-kix_list_27-0 {
  list-style-type: none
}

.lst-kix_list_23-1 > li:before {
  content: "" counter(lst-ctn-kix_list_23-0, decimal) "." counter(lst-ctn-kix_list_23-1, decimal) " "
}

.lst-kix_list_24-1 > li:before {
  content: "" counter(lst-ctn-kix_list_24-0, decimal) "." counter(lst-ctn-kix_list_24-1, decimal) " "
}

.lst-kix_list_24-0 > li:before {
  content: "" counter(lst-ctn-kix_list_24-0, decimal) ". "
}

ol.lst-kix_list_26-2.start {
  counter-reset: lst-ctn-kix_list_26-2 0
}

.lst-kix_list_23-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_23-4, decimal) ") "
}

.lst-kix_list_23-5 > li:before {
  content: "" counter(lst-ctn-kix_list_23-5, lower-latin) ". "
}

ol.lst-kix_list_31-2.start {
  counter-reset: lst-ctn-kix_list_31-2 0
}

.lst-kix_list_22-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_22-2, lower-latin) ") "
}

.lst-kix_list_22-6 > li:before {
  content: "" counter(lst-ctn-kix_list_22-6, lower-roman) ". "
}

.lst-kix_list_8-6 > li {
  counter-increment: lst-ctn-kix_list_8-6
}

.lst-kix_list_22-0 > li:before {
  content: "" counter(lst-ctn-kix_list_22-0, decimal) ". "
}

.lst-kix_list_22-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_22-8, lower-roman) ") "
}

ol.lst-kix_list_9-7 {
  list-style-type: none
}

ol.lst-kix_list_9-8 {
  list-style-type: none
}

ol.lst-kix_list_22-5.start {
  counter-reset: lst-ctn-kix_list_22-5 0
}

ol.lst-kix_list_9-3 {
  list-style-type: none
}

ol.lst-kix_list_9-4 {
  list-style-type: none
}

.lst-kix_list_5-7 > li {
  counter-increment: lst-ctn-kix_list_5-7
}

ol.lst-kix_list_9-5 {
  list-style-type: none
}

ol.lst-kix_list_34-7.start {
  counter-reset: lst-ctn-kix_list_34-7 0
}

ol.lst-kix_list_9-6 {
  list-style-type: none
}

ol.lst-kix_list_9-0 {
  list-style-type: none
}

ol.lst-kix_list_9-1 {
  list-style-type: none
}

ol.lst-kix_list_9-2 {
  list-style-type: none
}

.lst-kix_list_22-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_22-4, decimal) ") "
}

ol.lst-kix_list_25-5.start {
  counter-reset: lst-ctn-kix_list_25-5 0
}

ol.lst-kix_list_29-2.start {
  counter-reset: lst-ctn-kix_list_29-2 0
}

.lst-kix_list_25-5 > li:before {
  content: "" counter(lst-ctn-kix_list_25-5, lower-latin) ". "
}

.lst-kix_list_25-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_25-7, lower-latin) ") "
}

ol.lst-kix_list_18-3.start {
  counter-reset: lst-ctn-kix_list_18-3 0
}

ol.lst-kix_list_24-4.start {
  counter-reset: lst-ctn-kix_list_24-4 0
}

ol.lst-kix_list_18-7 {
  list-style-type: none
}

ol.lst-kix_list_18-8 {
  list-style-type: none
}

ol.lst-kix_list_33-0.start {
  counter-reset: lst-ctn-kix_list_33-0 0
}

ol.lst-kix_list_18-3 {
  list-style-type: none
}

ol.lst-kix_list_18-4 {
  list-style-type: none
}

.lst-kix_list_6-4 > li {
  counter-increment: lst-ctn-kix_list_6-4
}

ol.lst-kix_list_18-5 {
  list-style-type: none
}

ol.lst-kix_list_18-6 {
  list-style-type: none
}

ol.lst-kix_list_27-4.start {
  counter-reset: lst-ctn-kix_list_27-4 0
}

ol.lst-kix_list_18-0 {
  list-style-type: none
}

ol.lst-kix_list_18-1 {
  list-style-type: none
}

.lst-kix_list_9-3 > li {
  counter-increment: lst-ctn-kix_list_9-3
}

ol.lst-kix_list_18-2 {
  list-style-type: none
}

ol.lst-kix_list_15-2.start {
  counter-reset: lst-ctn-kix_list_15-2 0
}

ol.lst-kix_list_7-6.start {
  counter-reset: lst-ctn-kix_list_7-6 0
}

ol.lst-kix_list_29-8 {
  list-style-type: none
}

ol.lst-kix_list_29-7 {
  list-style-type: none
}

ol.lst-kix_list_15-3.start {
  counter-reset: lst-ctn-kix_list_15-3 0
}

ol.lst-kix_list_29-4 {
  list-style-type: none
}

ol.lst-kix_list_29-3 {
  list-style-type: none
}

ol.lst-kix_list_29-6 {
  list-style-type: none
}

ol.lst-kix_list_29-5 {
  list-style-type: none
}

ol.lst-kix_list_29-0 {
  list-style-type: none
}

ol.lst-kix_list_5-8.start {
  counter-reset: lst-ctn-kix_list_5-8 0
}

ol.lst-kix_list_29-2 {
  list-style-type: none
}

ol.lst-kix_list_29-1 {
  list-style-type: none
}

ol.lst-kix_list_12-2.start {
  counter-reset: lst-ctn-kix_list_12-2 0
}

ol.lst-kix_list_6-0.start {
  counter-reset: lst-ctn-kix_list_6-0 0
}

.lst-kix_list_24-8 > li {
  counter-increment: lst-ctn-kix_list_24-8
}

.lst-kix_list_5-1 > li {
  counter-increment: lst-ctn-kix_list_5-1
}

ol.lst-kix_list_19-0.start {
  counter-reset: lst-ctn-kix_list_19-0 0
}

ol.lst-kix_list_21-3.start {
  counter-reset: lst-ctn-kix_list_21-3 0
}

ol.lst-kix_list_34-6 {
  list-style-type: none
}

ol.lst-kix_list_34-5 {
  list-style-type: none
}

ol.lst-kix_list_34-8 {
  list-style-type: none
}

.lst-kix_list_7-1 > li {
  counter-increment: lst-ctn-kix_list_7-1
}

ol.lst-kix_list_34-7 {
  list-style-type: none
}

ol.lst-kix_list_34-2 {
  list-style-type: none
}

ol.lst-kix_list_34-1 {
  list-style-type: none
}

ol.lst-kix_list_25-6.start {
  counter-reset: lst-ctn-kix_list_25-6 0
}

ol.lst-kix_list_34-4 {
  list-style-type: none
}

ol.lst-kix_list_34-3 {
  list-style-type: none
}

ol.lst-kix_list_34-0 {
  list-style-type: none
}

.lst-kix_list_21-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_21-8, lower-roman) ") "
}

.lst-kix_list_26-5 > li:before {
  content: "" counter(lst-ctn-kix_list_26-5, lower-latin) ". "
}

.lst-kix_list_16-0 > li {
  counter-increment: lst-ctn-kix_list_16-0
}

.lst-kix_list_8-0 > li {
  counter-increment: lst-ctn-kix_list_8-0
}

.lst-kix_list_10-0 > li {
  counter-increment: lst-ctn-kix_list_10-0
}

ol.lst-kix_list_18-2.start {
  counter-reset: lst-ctn-kix_list_18-2 0
}

.lst-kix_list_26-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_26-8, lower-roman) ") "
}

.lst-kix_list_21-0 > li:before {
  content: "" counter(lst-ctn-kix_list_21-0, decimal) ". "
}

.lst-kix_list_26-1 > li:before {
  content: "" counter(lst-ctn-kix_list_26-0, decimal) "." counter(lst-ctn-kix_list_26-1, decimal) " "
}

.lst-kix_list_13-1 > li {
  counter-increment: lst-ctn-kix_list_13-1
}

.lst-kix_list_21-1 > li:before {
  content: "" counter(lst-ctn-kix_list_21-0, decimal) "." counter(lst-ctn-kix_list_21-1, decimal) " "
}

ol.lst-kix_list_15-8.start {
  counter-reset: lst-ctn-kix_list_15-8 0
}

.lst-kix_list_34-3 > li {
  counter-increment: lst-ctn-kix_list_34-3
}

.lst-kix_list_26-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_26-4, decimal) ") "
}

.lst-kix_list_10-2 > li {
  counter-increment: lst-ctn-kix_list_10-2
}

.lst-kix_list_21-5 > li:before {
  content: "" counter(lst-ctn-kix_list_21-5, lower-latin) ". "
}

.lst-kix_list_21-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_21-4, decimal) ") "
}

.lst-kix_list_26-0 > li:before {
  content: "" counter(lst-ctn-kix_list_26-0, decimal) ". "
}

.lst-kix_list_31-4 > li {
  counter-increment: lst-ctn-kix_list_31-4
}

ol.lst-kix_list_7-2.start {
  counter-reset: lst-ctn-kix_list_7-2 0
}

.lst-kix_list_31-2 > li {
  counter-increment: lst-ctn-kix_list_31-2
}

ol.lst-kix_list_19-5.start {
  counter-reset: lst-ctn-kix_list_19-5 0
}

ol.lst-kix_list_12-5 {
  list-style-type: none
}

ol.lst-kix_list_12-6 {
  list-style-type: none
}

ol.lst-kix_list_12-7 {
  list-style-type: none
}

ol.lst-kix_list_12-8 {
  list-style-type: none
}

ol.lst-kix_list_12-1 {
  list-style-type: none
}

ol.lst-kix_list_12-2 {
  list-style-type: none
}

ol.lst-kix_list_12-3 {
  list-style-type: none
}

.lst-kix_list_35-8 > li {
  counter-increment: lst-ctn-kix_list_35-8
}

ol.lst-kix_list_12-4 {
  list-style-type: none
}

ol.lst-kix_list_26-3.start {
  counter-reset: lst-ctn-kix_list_26-3 0
}

ol.lst-kix_list_12-0 {
  list-style-type: none
}

ol.lst-kix_list_27-8.start {
  counter-reset: lst-ctn-kix_list_27-8 0
}

.lst-kix_list_21-0 > li {
  counter-increment: lst-ctn-kix_list_21-0
}

.lst-kix_list_25-1 > li:before {
  content: "" counter(lst-ctn-kix_list_25-0, decimal) "." counter(lst-ctn-kix_list_25-1, decimal) " "
}

.lst-kix_list_25-0 > li:before {
  content: "" counter(lst-ctn-kix_list_25-0, decimal) ". "
}

ol.lst-kix_list_10-8.start {
  counter-reset: lst-ctn-kix_list_10-8 0
}

ol.lst-kix_list_31-1.start {
  counter-reset: lst-ctn-kix_list_31-1 0
}

ol.lst-kix_list_7-1.start {
  counter-reset: lst-ctn-kix_list_7-1 0
}

ol.lst-kix_list_23-6 {
  list-style-type: none
}

ol.lst-kix_list_23-5 {
  list-style-type: none
}

ol.lst-kix_list_23-8 {
  list-style-type: none
}

ol.lst-kix_list_23-7 {
  list-style-type: none
}

ol.lst-kix_list_23-2 {
  list-style-type: none
}

.lst-kix_list_16-7 > li {
  counter-increment: lst-ctn-kix_list_16-7
}

ol.lst-kix_list_21-4.start {
  counter-reset: lst-ctn-kix_list_21-4 0
}

ol.lst-kix_list_23-1 {
  list-style-type: none
}

ol.lst-kix_list_23-4 {
  list-style-type: none
}

ol.lst-kix_list_23-3 {
  list-style-type: none
}

.lst-kix_list_27-7 > li {
  counter-increment: lst-ctn-kix_list_27-7
}

ol.lst-kix_list_23-0 {
  list-style-type: none
}

ol.lst-kix_list_20-6.start {
  counter-reset: lst-ctn-kix_list_20-6 0
}

.lst-kix_list_34-1 > li {
  counter-increment: lst-ctn-kix_list_34-1
}

.lst-kix_list_13-8 > li {
  counter-increment: lst-ctn-kix_list_13-8
}

.lst-kix_list_16-5 > li {
  counter-increment: lst-ctn-kix_list_16-5
}

ol.lst-kix_list_5-0 {
  list-style-type: none
}

ol.lst-kix_list_5-1 {
  list-style-type: none
}

.lst-kix_list_26-2 > li {
  counter-increment: lst-ctn-kix_list_26-2
}

ol.lst-kix_list_5-2 {
  list-style-type: none
}

.lst-kix_list_22-5 > li:before {
  content: "" counter(lst-ctn-kix_list_22-5, lower-latin) ". "
}

.lst-kix_list_21-2 > li {
  counter-increment: lst-ctn-kix_list_21-2
}

.lst-kix_list_22-1 > li:before {
  content: "" counter(lst-ctn-kix_list_22-0, decimal) "." counter(lst-ctn-kix_list_22-1, decimal) " "
}

.lst-kix_list_27-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_27-4, decimal) ") "
}

.lst-kix_list_20-2 > li {
  counter-increment: lst-ctn-kix_list_20-2
}

.lst-kix_list_6-6 > li {
  counter-increment: lst-ctn-kix_list_6-6
}

ol.lst-kix_list_15-7.start {
  counter-reset: lst-ctn-kix_list_15-7 0
}

.lst-kix_list_23-3 > li {
  counter-increment: lst-ctn-kix_list_23-3
}

.lst-kix_list_13-6 > li {
  counter-increment: lst-ctn-kix_list_13-6
}

ol.lst-kix_list_14-6.start {
  counter-reset: lst-ctn-kix_list_14-6 0
}

ol.lst-kix_list_5-7 {
  list-style-type: none
}

ol.lst-kix_list_5-8 {
  list-style-type: none
}

ol.lst-kix_list_26-8.start {
  counter-reset: lst-ctn-kix_list_26-8 0
}

ol.lst-kix_list_5-3 {
  list-style-type: none
}

.lst-kix_list_8-7 > li {
  counter-increment: lst-ctn-kix_list_8-7
}

.lst-kix_list_19-6 > li {
  counter-increment: lst-ctn-kix_list_19-6
}

ol.lst-kix_list_5-4 {
  list-style-type: none
}

.lst-kix_list_27-0 > li:before {
  content: "" counter(lst-ctn-kix_list_27-0, decimal) ". "
}

ol.lst-kix_list_5-5 {
  list-style-type: none
}

ol.lst-kix_list_5-6 {
  list-style-type: none
}

.lst-kix_list_20-4 > li {
  counter-increment: lst-ctn-kix_list_20-4
}

.lst-kix_list_9-5 > li {
  counter-increment: lst-ctn-kix_list_9-5
}

.lst-kix_list_5-8 > li {
  counter-increment: lst-ctn-kix_list_5-8
}

.lst-kix_list_27-0 > li {
  counter-increment: lst-ctn-kix_list_27-0
}

ol.lst-kix_list_19-4.start {
  counter-reset: lst-ctn-kix_list_19-4 0
}

ol.lst-kix_list_33-6.start {
  counter-reset: lst-ctn-kix_list_33-6 0
}

ol.lst-kix_list_20-1.start {
  counter-reset: lst-ctn-kix_list_20-1 0
}

.lst-kix_list_25-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_25-4, decimal) ") "
}

.lst-kix_list_19-4 > li {
  counter-increment: lst-ctn-kix_list_19-4
}

.lst-kix_list_35-1 > li {
  counter-increment: lst-ctn-kix_list_35-1
}

.lst-kix_list_24-1 > li {
  counter-increment: lst-ctn-kix_list_24-1
}

.lst-kix_list_25-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_25-8, lower-roman) ") "
}

ol.lst-kix_list_25-1.start {
  counter-reset: lst-ctn-kix_list_25-1 0
}

ol.lst-kix_list_14-7 {
  list-style-type: none
}

ol.lst-kix_list_14-8 {
  list-style-type: none
}

ol.lst-kix_list_26-6.start {
  counter-reset: lst-ctn-kix_list_26-6 0
}

ol.lst-kix_list_14-3 {
  list-style-type: none
}

ol.lst-kix_list_21-8.start {
  counter-reset: lst-ctn-kix_list_21-8 0
}

ol.lst-kix_list_14-4 {
  list-style-type: none
}

ol.lst-kix_list_14-5 {
  list-style-type: none
}

ol.lst-kix_list_14-6 {
  list-style-type: none
}

.lst-kix_list_34-8 > li {
  counter-increment: lst-ctn-kix_list_34-8
}

.lst-kix_list_15-2 > li {
  counter-increment: lst-ctn-kix_list_15-2
}

ol.lst-kix_list_14-0 {
  list-style-type: none
}

.lst-kix_list_22-5 > li {
  counter-increment: lst-ctn-kix_list_22-5
}

ol.lst-kix_list_14-1 {
  list-style-type: none
}

.lst-kix_list_27-5 > li {
  counter-increment: lst-ctn-kix_list_27-5
}

ol.lst-kix_list_14-2 {
  list-style-type: none
}

.lst-kix_list_20-5 > li:before {
  content: "" counter(lst-ctn-kix_list_20-5, lower-latin) ". "
}

.lst-kix_list_28-8 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_20-1 > li:before {
  content: "" counter(lst-ctn-kix_list_20-0, decimal) "." counter(lst-ctn-kix_list_20-1, decimal) " "
}

.lst-kix_list_12-3 > li {
  counter-increment: lst-ctn-kix_list_12-3
}

.lst-kix_list_24-6 > li {
  counter-increment: lst-ctn-kix_list_24-6
}

.lst-kix_list_17-3 > li {
  counter-increment: lst-ctn-kix_list_17-3
}

ol.lst-kix_list_8-4.start {
  counter-reset: lst-ctn-kix_list_8-4 0
}

.lst-kix_list_28-4 > li:before {
  content: "o  "
}

.lst-kix_list_21-7 > li {
  counter-increment: lst-ctn-kix_list_21-7
}

ol.lst-kix_list_25-0.start {
  counter-reset: lst-ctn-kix_list_25-0 0
}

ol.lst-kix_list_25-8 {
  list-style-type: none
}

ol.lst-kix_list_25-7 {
  list-style-type: none
}

.lst-kix_list_35-6 > li {
  counter-increment: lst-ctn-kix_list_35-6
}

ol.lst-kix_list_25-4 {
  list-style-type: none
}

ol.lst-kix_list_25-3 {
  list-style-type: none
}

ol.lst-kix_list_13-0.start {
  counter-reset: lst-ctn-kix_list_13-0 0
}

.lst-kix_list_14-4 > li {
  counter-increment: lst-ctn-kix_list_14-4
}

ol.lst-kix_list_25-6 {
  list-style-type: none
}

ol.lst-kix_list_25-5 {
  list-style-type: none
}

ol.lst-kix_list_25-0 {
  list-style-type: none
}

ol.lst-kix_list_25-2 {
  list-style-type: none
}

.lst-kix_list_10-7 > li {
  counter-increment: lst-ctn-kix_list_10-7
}

ol.lst-kix_list_25-1 {
  list-style-type: none
}

.lst-kix_list_25-4 > li {
  counter-increment: lst-ctn-kix_list_25-4
}

.lst-kix_list_18-1 > li {
  counter-increment: lst-ctn-kix_list_18-1
}

ol.lst-kix_list_8-3.start {
  counter-reset: lst-ctn-kix_list_8-3 0
}

.lst-kix_list_11-5 > li {
  counter-increment: lst-ctn-kix_list_11-5
}

ol.lst-kix_list_14-5.start {
  counter-reset: lst-ctn-kix_list_14-5 0
}

.lst-kix_list_28-0 > li:before {
  content: "\0025cf   "
}

.lst-kix_list_27-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_27-8, lower-roman) ") "
}

ol.lst-kix_list_20-3.start {
  counter-reset: lst-ctn-kix_list_20-3 0
}

.lst-kix_list_29-1 > li {
  counter-increment: lst-ctn-kix_list_29-1
}

.lst-kix_list_19-1 > li:before {
  content: "" counter(lst-ctn-kix_list_19-0, decimal) "." counter(lst-ctn-kix_list_19-1, decimal) " "
}

ul.lst-kix_list_1-0 {
  list-style-type: none
}

.lst-kix_list_27-8 > li {
  counter-increment: lst-ctn-kix_list_27-8
}

.lst-kix_list_19-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_19-4, decimal) ") "
}

.lst-kix_list_31-5 > li {
  counter-increment: lst-ctn-kix_list_31-5
}

.lst-kix_list_19-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_19-3, lower-roman) ") "
}

.lst-kix_list_15-0 > li {
  counter-increment: lst-ctn-kix_list_15-0
}

ol.lst-kix_list_24-5.start {
  counter-reset: lst-ctn-kix_list_24-5 0
}

ol.lst-kix_list_6-6.start {
  counter-reset: lst-ctn-kix_list_6-6 0
}

ol.lst-kix_list_29-6.start {
  counter-reset: lst-ctn-kix_list_29-6 0
}

.lst-kix_list_11-0 > li {
  counter-increment: lst-ctn-kix_list_11-0
}

ul.lst-kix_list_1-3 {
  list-style-type: none
}

ul.lst-kix_list_1-4 {
  list-style-type: none
}

ul.lst-kix_list_1-1 {
  list-style-type: none
}

ul.lst-kix_list_1-2 {
  list-style-type: none
}

ul.lst-kix_list_1-7 {
  list-style-type: none
}

ul.lst-kix_list_1-8 {
  list-style-type: none
}

ul.lst-kix_list_1-5 {
  list-style-type: none
}

ul.lst-kix_list_1-6 {
  list-style-type: none
}

ul.lst-kix_list_32-1 {
  list-style-type: none
}

ul.lst-kix_list_32-2 {
  list-style-type: none
}

ul.lst-kix_list_32-3 {
  list-style-type: none
}

ul.lst-kix_list_32-4 {
  list-style-type: none
}

ol.lst-kix_list_9-6.start {
  counter-reset: lst-ctn-kix_list_9-6 0
}

ul.lst-kix_list_32-5 {
  list-style-type: none
}

ol.lst-kix_list_16-3.start {
  counter-reset: lst-ctn-kix_list_16-3 0
}

ul.lst-kix_list_32-6 {
  list-style-type: none
}

ol.lst-kix_list_27-5.start {
  counter-reset: lst-ctn-kix_list_27-5 0
}

ul.lst-kix_list_32-7 {
  list-style-type: none
}

ul.lst-kix_list_32-8 {
  list-style-type: none
}

ol.lst-kix_list_22-4.start {
  counter-reset: lst-ctn-kix_list_22-4 0
}

.lst-kix_list_22-7 > li {
  counter-increment: lst-ctn-kix_list_22-7
}

ul.lst-kix_list_32-0 {
  list-style-type: none
}

.lst-kix_list_26-7 > li {
  counter-increment: lst-ctn-kix_list_26-7
}

.lst-kix_list_33-7 > li {
  counter-increment: lst-ctn-kix_list_33-7
}

ol.lst-kix_list_11-2.start {
  counter-reset: lst-ctn-kix_list_11-2 0
}

.lst-kix_list_5-2 > li {
  counter-increment: lst-ctn-kix_list_5-2
}

.lst-kix_list_19-6 > li:before {
  content: "" counter(lst-ctn-kix_list_19-6, lower-roman) ". "
}

ol.lst-kix_list_8-7.start {
  counter-reset: lst-ctn-kix_list_8-7 0
}

.lst-kix_list_17-2 > li {
  counter-increment: lst-ctn-kix_list_17-2
}

ol.lst-kix_list_31-8 {
  list-style-type: none
}

.lst-kix_list_20-5 > li {
  counter-increment: lst-ctn-kix_list_20-5
}

ol.lst-kix_list_31-5 {
  list-style-type: none
}

ol.lst-kix_list_31-4 {
  list-style-type: none
}

ol.lst-kix_list_31-7 {
  list-style-type: none
}

ol.lst-kix_list_35-0.start {
  counter-reset: lst-ctn-kix_list_35-0 0
}

ol.lst-kix_list_31-6 {
  list-style-type: none
}

ol.lst-kix_list_31-1 {
  list-style-type: none
}

ol.lst-kix_list_31-0 {
  list-style-type: none
}

ol.lst-kix_list_31-3 {
  list-style-type: none
}

ol.lst-kix_list_31-2 {
  list-style-type: none
}

.lst-kix_list_22-0 > li {
  counter-increment: lst-ctn-kix_list_22-0
}

ol.lst-kix_list_24-0.start {
  counter-reset: lst-ctn-kix_list_24-0 0
}

.lst-kix_list_18-3 > li {
  counter-increment: lst-ctn-kix_list_18-3
}

ol.lst-kix_list_33-4.start {
  counter-reset: lst-ctn-kix_list_33-4 0
}

ol.lst-kix_list_35-7.start {
  counter-reset: lst-ctn-kix_list_35-7 0
}

.lst-kix_list_21-6 > li {
  counter-increment: lst-ctn-kix_list_21-6
}

.lst-kix_list_10-3 > li {
  counter-increment: lst-ctn-kix_list_10-3
}

.lst-kix_list_18-0 > li:before {
  content: "" counter(lst-ctn-kix_list_18-0, decimal) ". "
}

ol.lst-kix_list_13-3.start {
  counter-reset: lst-ctn-kix_list_13-3 0
}

.lst-kix_list_18-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_18-2, lower-latin) ") "
}

.lst-kix_list_26-0 > li {
  counter-increment: lst-ctn-kix_list_26-0
}

ol.lst-kix_list_27-0.start {
  counter-reset: lst-ctn-kix_list_27-0 0
}

.lst-kix_list_27-4 > li {
  counter-increment: lst-ctn-kix_list_27-4
}

ol.lst-kix_list_11-7.start {
  counter-reset: lst-ctn-kix_list_11-7 0
}

ol.lst-kix_list_14-2.start {
  counter-reset: lst-ctn-kix_list_14-2 0
}

.lst-kix_list_16-1 > li {
  counter-increment: lst-ctn-kix_list_16-1
}

.lst-kix_list_30-4 > li {
  counter-increment: lst-ctn-kix_list_30-4
}

.lst-kix_list_27-1 > li {
  counter-increment: lst-ctn-kix_list_27-1
}

.lst-kix_list_25-2 > li {
  counter-increment: lst-ctn-kix_list_25-2
}

.lst-kix_list_27-1 > li:before {
  content: "" counter(lst-ctn-kix_list_27-0, decimal) "." counter(lst-ctn-kix_list_27-1, decimal) " "
}

.lst-kix_list_27-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_27-3, lower-roman) ") "
}

.lst-kix_list_17-5 > li {
  counter-increment: lst-ctn-kix_list_17-5
}

ol.lst-kix_list_9-4.start {
  counter-reset: lst-ctn-kix_list_9-4 0
}

ul.lst-kix_list_3-7 {
  list-style-type: none
}

ul.lst-kix_list_3-8 {
  list-style-type: none
}

.lst-kix_list_21-3 > li {
  counter-increment: lst-ctn-kix_list_21-3
}

.lst-kix_list_18-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_18-8, lower-roman) ") "
}

ol.lst-kix_list_27-3.start {
  counter-reset: lst-ctn-kix_list_27-3 0
}

ul.lst-kix_list_3-1 {
  list-style-type: none
}

.lst-kix_list_17-6 > li {
  counter-increment: lst-ctn-kix_list_17-6
}

ul.lst-kix_list_3-2 {
  list-style-type: none
}

ol.lst-kix_list_30-1.start {
  counter-reset: lst-ctn-kix_list_30-1 0
}

ul.lst-kix_list_3-0 {
  list-style-type: none
}

ul.lst-kix_list_3-5 {
  list-style-type: none
}

ul.lst-kix_list_3-6 {
  list-style-type: none
}

ul.lst-kix_list_3-3 {
  list-style-type: none
}

ul.lst-kix_list_3-4 {
  list-style-type: none
}

.lst-kix_list_10-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_10-7, lower-latin) ") "
}

.lst-kix_list_7-8 > li {
  counter-increment: lst-ctn-kix_list_7-8
}

.lst-kix_list_20-1 > li {
  counter-increment: lst-ctn-kix_list_20-1
}

.lst-kix_list_10-5 > li:before {
  content: "" counter(lst-ctn-kix_list_10-5, lower-latin) ". "
}

ol.lst-kix_list_13-5.start {
  counter-reset: lst-ctn-kix_list_13-5 0
}

ol.lst-kix_list_18-6.start {
  counter-reset: lst-ctn-kix_list_18-6 0
}

.lst-kix_list_29-3 > li {
  counter-increment: lst-ctn-kix_list_29-3
}

ol.lst-kix_list_20-8 {
  list-style-type: none
}

ol.lst-kix_list_13-8.start {
  counter-reset: lst-ctn-kix_list_13-8 0
}

ol.lst-kix_list_20-5 {
  list-style-type: none
}

ol.lst-kix_list_20-4 {
  list-style-type: none
}

ol.lst-kix_list_20-7 {
  list-style-type: none
}

.lst-kix_list_11-7 > li {
  counter-increment: lst-ctn-kix_list_11-7
}

ol.lst-kix_list_20-6 {
  list-style-type: none
}

.lst-kix_list_9-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_9-2, lower-latin) ") "
}

ol.lst-kix_list_20-1 {
  list-style-type: none
}

ol.lst-kix_list_20-0 {
  list-style-type: none
}

ol.lst-kix_list_20-3 {
  list-style-type: none
}

ol.lst-kix_list_20-2 {
  list-style-type: none
}

ol.lst-kix_list_14-0.start {
  counter-reset: lst-ctn-kix_list_14-0 0
}

.lst-kix_list_12-5 > li {
  counter-increment: lst-ctn-kix_list_12-5
}

.lst-kix_list_5-5 > li {
  counter-increment: lst-ctn-kix_list_5-5
}

.lst-kix_list_31-1 > li {
  counter-increment: lst-ctn-kix_list_31-1
}

.lst-kix_list_9-0 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) ". "
}

.lst-kix_list_16-8 > li {
  counter-increment: lst-ctn-kix_list_16-8
}

ol.lst-kix_list_33-7 {
  list-style-type: none
}

ol.lst-kix_list_24-3.start {
  counter-reset: lst-ctn-kix_list_24-3 0
}

ol.lst-kix_list_33-6 {
  list-style-type: none
}

ol.lst-kix_list_33-8 {
  list-style-type: none
}

ol.lst-kix_list_33-3 {
  list-style-type: none
}

ol.lst-kix_list_33-2 {
  list-style-type: none
}

.lst-kix_list_23-5 > li {
  counter-increment: lst-ctn-kix_list_23-5
}

.lst-kix_list_11-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_11-3, lower-roman) ") "
}

ol.lst-kix_list_33-5 {
  list-style-type: none
}

ol.lst-kix_list_33-4 {
  list-style-type: none
}

.lst-kix_list_6-3 > li {
  counter-increment: lst-ctn-kix_list_6-3
}

ol.lst-kix_list_18-4.start {
  counter-reset: lst-ctn-kix_list_18-4 0
}

ol.lst-kix_list_33-1 {
  list-style-type: none
}

ol.lst-kix_list_33-0 {
  list-style-type: none
}

ol.lst-kix_list_29-1.start {
  counter-reset: lst-ctn-kix_list_29-1 0
}

.lst-kix_list_29-1 > li:before {
  content: "" counter(lst-ctn-kix_list_29-1, lower-latin) ". "
}

.lst-kix_list_20-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_20-4, decimal) ") "
}

ol.lst-kix_list_22-7.start {
  counter-reset: lst-ctn-kix_list_22-7 0
}

ol.lst-kix_list_6-1.start {
  counter-reset: lst-ctn-kix_list_6-1 0
}

.lst-kix_list_29-3 > li:before {
  content: "" counter(lst-ctn-kix_list_29-3, decimal) ". "
}

.lst-kix_list_20-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_20-2, lower-latin) ") "
}

.lst-kix_list_9-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_9-8, lower-roman) ") "
}

ol.lst-kix_list_16-8.start {
  counter-reset: lst-ctn-kix_list_16-8 0
}

ol.lst-kix_list_33-1.start {
  counter-reset: lst-ctn-kix_list_33-1 0
}

.lst-kix_list_28-7 > li:before {
  content: "o  "
}

.lst-kix_list_1-7 > li:before {
  content: "o  "
}

.lst-kix_list_1-5 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_28-5 > li:before {
  content: "\0025aa   "
}

ol.lst-kix_list_9-1.start {
  counter-reset: lst-ctn-kix_list_9-1 0
}

ol.lst-kix_list_24-2.start {
  counter-reset: lst-ctn-kix_list_24-2 0
}

.lst-kix_list_5-6 > li {
  counter-increment: lst-ctn-kix_list_5-6
}

ol.lst-kix_list_22-6.start {
  counter-reset: lst-ctn-kix_list_22-6 0
}

.lst-kix_list_2-1 > li:before {
  content: "o  "
}

.lst-kix_list_19-8 > li {
  counter-increment: lst-ctn-kix_list_19-8
}

.lst-kix_list_2-3 > li:before {
  content: "\0025cf   "
}

.lst-kix_list_11-8 > li {
  counter-increment: lst-ctn-kix_list_11-8
}

.lst-kix_list_35-3 > li:before {
  content: "" counter(lst-ctn-kix_list_35-3, decimal) ". "
}

ol.lst-kix_list_24-8.start {
  counter-reset: lst-ctn-kix_list_24-8 0
}

.lst-kix_list_30-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_30-4, decimal) ") "
}

.lst-kix_list_20-8 > li {
  counter-increment: lst-ctn-kix_list_20-8
}

.lst-kix_list_35-6 > li:before {
  content: "" counter(lst-ctn-kix_list_35-6, decimal) ". "
}

.lst-kix_list_9-1 > li {
  counter-increment: lst-ctn-kix_list_9-1
}

.lst-kix_list_3-2 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_26-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_26-7, lower-latin) ") "
}

.lst-kix_list_8-1 > li:before {
  content: "" counter(lst-ctn-kix_list_8-0, decimal) "." counter(lst-ctn-kix_list_8-1, decimal) " "
}

.lst-kix_list_6-0 > li {
  counter-increment: lst-ctn-kix_list_6-0
}

.lst-kix_list_3-5 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_18-0 > li {
  counter-increment: lst-ctn-kix_list_18-0
}

.lst-kix_list_30-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_30-7, lower-latin) ") "
}

ol.lst-kix_list_30-8.start {
  counter-reset: lst-ctn-kix_list_30-8 0
}

ol.lst-kix_list_11-5.start {
  counter-reset: lst-ctn-kix_list_11-5 0
}

.lst-kix_list_11-1 > li {
  counter-increment: lst-ctn-kix_list_11-1
}

.lst-kix_list_8-6 > li:before {
  content: "" counter(lst-ctn-kix_list_8-6, lower-roman) ". "
}

.lst-kix_list_26-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_26-2, lower-latin) ") "
}

.lst-kix_list_21-6 > li:before {
  content: "" counter(lst-ctn-kix_list_21-6, lower-roman) ". "
}

ol.lst-kix_list_16-6.start {
  counter-reset: lst-ctn-kix_list_16-6 0
}

ol.lst-kix_list_22-1.start {
  counter-reset: lst-ctn-kix_list_22-1 0
}

ol.lst-kix_list_35-3.start {
  counter-reset: lst-ctn-kix_list_35-3 0
}

ol.lst-kix_list_16-0.start {
  counter-reset: lst-ctn-kix_list_16-0 0
}

.lst-kix_list_33-4 > li {
  counter-increment: lst-ctn-kix_list_33-4
}

ol.lst-kix_list_27-2.start {
  counter-reset: lst-ctn-kix_list_27-2 0
}

.lst-kix_list_21-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_21-3, lower-roman) ") "
}

ol.lst-kix_list_18-7.start {
  counter-reset: lst-ctn-kix_list_18-7 0
}

ol.lst-kix_list_30-2.start {
  counter-reset: lst-ctn-kix_list_30-2 0
}

.lst-kix_list_25-5 > li {
  counter-increment: lst-ctn-kix_list_25-5
}

ol.lst-kix_list_11-6.start {
  counter-reset: lst-ctn-kix_list_11-6 0
}

ol.lst-kix_list_29-4.start {
  counter-reset: lst-ctn-kix_list_29-4 0
}

ol.lst-kix_list_6-4.start {
  counter-reset: lst-ctn-kix_list_6-4 0
}

.lst-kix_list_17-1 > li:before {
  content: "" counter(lst-ctn-kix_list_17-0, decimal) "." counter(lst-ctn-kix_list_17-1, decimal) " "
}

.lst-kix_list_31-8 > li {
  counter-increment: lst-ctn-kix_list_31-8
}

.lst-kix_list_25-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_25-3, lower-roman) ") "
}

.lst-kix_list_16-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_16-2, lower-latin) ") "
}

ol.lst-kix_list_27-1.start {
  counter-reset: lst-ctn-kix_list_27-1 0
}

.lst-kix_list_26-6 > li {
  counter-increment: lst-ctn-kix_list_26-6
}

.lst-kix_list_16-5 > li:before {
  content: "" counter(lst-ctn-kix_list_16-5, lower-latin) ". "
}

.lst-kix_list_15-3 > li {
  counter-increment: lst-ctn-kix_list_15-3
}

ol.lst-kix_list_22-2.start {
  counter-reset: lst-ctn-kix_list_22-2 0
}

ol.lst-kix_list_30-3.start {
  counter-reset: lst-ctn-kix_list_30-3 0
}

.lst-kix_list_30-7 > li {
  counter-increment: lst-ctn-kix_list_30-7
}

ol.lst-kix_list_11-0.start {
  counter-reset: lst-ctn-kix_list_11-0 0
}

ol.lst-kix_list_18-8.start {
  counter-reset: lst-ctn-kix_list_18-8 0
}

ol.lst-kix_list_29-3.start {
  counter-reset: lst-ctn-kix_list_29-3 0
}

.lst-kix_list_16-4 > li {
  counter-increment: lst-ctn-kix_list_16-4
}

ol.lst-kix_list_6-3.start {
  counter-reset: lst-ctn-kix_list_6-3 0
}

ol.lst-kix_list_35-8.start {
  counter-reset: lst-ctn-kix_list_35-8 0
}

ol.lst-kix_list_16-5.start {
  counter-reset: lst-ctn-kix_list_16-5 0
}

.lst-kix_list_17-6 > li:before {
  content: "" counter(lst-ctn-kix_list_17-6, lower-roman) ". "
}

ol.lst-kix_list_35-5.start {
  counter-reset: lst-ctn-kix_list_35-5 0
}

.lst-kix_list_2-6 > li:before {
  content: "\0025cf   "
}

ol.lst-kix_list_16-2.start {
  counter-reset: lst-ctn-kix_list_16-2 0
}

.lst-kix_list_14-5 > li {
  counter-increment: lst-ctn-kix_list_14-5
}

.lst-kix_list_7-5 > li:before {
  content: "" counter(lst-ctn-kix_list_7-5, decimal) ". "
}

.lst-kix_list_27-6 > li:before {
  content: "" counter(lst-ctn-kix_list_27-6, lower-roman) ". "
}

.lst-kix_list_19-5 > li {
  counter-increment: lst-ctn-kix_list_19-5
}

.lst-kix_list_22-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_22-7, lower-latin) ") "
}

.lst-kix_list_23-2 > li {
  counter-increment: lst-ctn-kix_list_23-2
}

ol.lst-kix_list_30-4.start {
  counter-reset: lst-ctn-kix_list_30-4 0
}

.lst-kix_list_30-0 > li {
  counter-increment: lst-ctn-kix_list_30-0
}

ol.lst-kix_list_11-1.start {
  counter-reset: lst-ctn-kix_list_11-1 0
}

ol.lst-kix_list_35-2.start {
  counter-reset: lst-ctn-kix_list_35-2 0
}

.lst-kix_list_34-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_34-7, lower-latin) ") "
}

.lst-kix_list_18-5 > li:before {
  content: "" counter(lst-ctn-kix_list_18-5, lower-latin) ". "
}

.lst-kix_list_13-6 > li:before {
  content: "" counter(lst-ctn-kix_list_13-6, lower-roman) ". "
}

.lst-kix_list_6-7 > li {
  counter-increment: lst-ctn-kix_list_6-7
}

.lst-kix_list_26-3 > li {
  counter-increment: lst-ctn-kix_list_26-3
}

.lst-kix_list_10-6 > li {
  counter-increment: lst-ctn-kix_list_10-6
}

.lst-kix_list_7-5 > li {
  counter-increment: lst-ctn-kix_list_7-5
}

.lst-kix_list_15-6 > li:before {
  content: "" counter(lst-ctn-kix_list_15-6, lower-roman) ". "
}

.lst-kix_list_11-4 > li {
  counter-increment: lst-ctn-kix_list_11-4
}

.lst-kix_list_29-0 > li {
  counter-increment: lst-ctn-kix_list_29-0
}

ol.lst-kix_list_24-7.start {
  counter-reset: lst-ctn-kix_list_24-7 0
}

.lst-kix_list_22-4 > li {
  counter-increment: lst-ctn-kix_list_22-4
}

.lst-kix_list_31-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_31-3, decimal) ") "
}

ol.lst-kix_list_6-8.start {
  counter-reset: lst-ctn-kix_list_6-8 0
}

.lst-kix_list_10-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_10-2, lower-latin) ") "
}

.lst-kix_list_13-7 > li {
  counter-increment: lst-ctn-kix_list_13-7
}

.lst-kix_list_20-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_20-7, lower-latin) ") "
}

ol.lst-kix_list_6-5.start {
  counter-reset: lst-ctn-kix_list_6-5 0
}

.lst-kix_list_4-6 > li:before {
  content: "\0025aa   "
}

ol.lst-kix_list_29-8.start {
  counter-reset: lst-ctn-kix_list_29-8 0
}

.lst-kix_list_25-6 > li:before {
  content: "" counter(lst-ctn-kix_list_25-6, lower-roman) ". "
}

ol.lst-kix_list_29-5.start {
  counter-reset: lst-ctn-kix_list_29-5 0
}

.lst-kix_list_34-2 > li {
  counter-increment: lst-ctn-kix_list_34-2
}

ol.lst-kix_list_6-7.start {
  counter-reset: lst-ctn-kix_list_6-7 0
}

.lst-kix_list_12-2 > li {
  counter-increment: lst-ctn-kix_list_12-2
}

.lst-kix_list_9-5 > li:before {
  content: "" counter(lst-ctn-kix_list_9-5, lower-latin) ". "
}

.lst-kix_list_29-6 > li:before {
  content: "" counter(lst-ctn-kix_list_29-6, decimal) ". "
}

ol.lst-kix_list_22-0.start {
  counter-reset: lst-ctn-kix_list_22-0 0
}

.lst-kix_list_24-0 > li {
  counter-increment: lst-ctn-kix_list_24-0
}

.lst-kix_list_33-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_33-3, lower-roman) ") "
}

.lst-kix_list_12-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_12-2, lower-latin) ") "
}

.lst-kix_list_11-6 > li:before {
  content: "" counter(lst-ctn-kix_list_11-6, lower-roman) ". "
}

.lst-kix_list_32-7 > li:before {
  content: "o  "
}

ol.lst-kix_list_30-6.start {
  counter-reset: lst-ctn-kix_list_30-6 0
}

ol.lst-kix_list_11-3.start {
  counter-reset: lst-ctn-kix_list_11-3 0
}

.lst-kix_list_1-2 > li:before {
  content: "\0025aa   "
}

ol.lst-kix_list_16-1.start {
  counter-reset: lst-ctn-kix_list_16-1 0
}

ol.lst-kix_list_35-4.start {
  counter-reset: lst-ctn-kix_list_35-4 0
}

li.li-bullet-0:before {
  margin-left: -54px;
  white-space: nowrap;
  display: inline-block;
  min-width: 54px
}

ol.lst-kix_list_29-7.start {
  counter-reset: lst-ctn-kix_list_29-7 0
}

.lst-kix_list_35-0 > li {
  counter-increment: lst-ctn-kix_list_35-0
}

.lst-kix_list_18-7 > li {
  counter-increment: lst-ctn-kix_list_18-7
}

.lst-kix_list_29-7 > li {
  counter-increment: lst-ctn-kix_list_29-7
}

ol.lst-kix_list_11-4.start {
  counter-reset: lst-ctn-kix_list_11-4 0
}

ol.lst-kix_list_30-7.start {
  counter-reset: lst-ctn-kix_list_30-7 0
}

.lst-kix_list_28-2 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_14-1 > li:before {
  content: "" counter(lst-ctn-kix_list_14-0, decimal) "." counter(lst-ctn-kix_list_14-1, decimal) " "
}

.lst-kix_list_14-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_14-3, lower-roman) ") "
}

ol.lst-kix_list_15-6 {
  list-style-type: none
}

.lst-kix_list_25-8 > li {
  counter-increment: lst-ctn-kix_list_25-8
}

ol.lst-kix_list_15-7 {
  list-style-type: none
}

ul.lst-kix_list_28-0 {
  list-style-type: none
}

ol.lst-kix_list_15-8 {
  list-style-type: none
}

.lst-kix_list_14-0 > li:before {
  content: "" counter(lst-ctn-kix_list_14-0, decimal) ". "
}

.lst-kix_list_14-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_14-4, decimal) ") "
}

ul.lst-kix_list_28-1 {
  list-style-type: none
}

ol.lst-kix_list_15-2 {
  list-style-type: none
}

ol.lst-kix_list_15-3 {
  list-style-type: none
}

ol.lst-kix_list_15-4 {
  list-style-type: none
}

ol.lst-kix_list_18-5.start {
  counter-reset: lst-ctn-kix_list_18-5 0
}

.lst-kix_list_6-1 > li {
  counter-increment: lst-ctn-kix_list_6-1
}

.lst-kix_list_14-5 > li:before {
  content: "" counter(lst-ctn-kix_list_14-5, lower-latin) ". "
}

.lst-kix_list_14-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_14-7, lower-latin) ") "
}

ol.lst-kix_list_15-5 {
  list-style-type: none
}

ol.lst-kix_list_15-0 {
  list-style-type: none
}

.lst-kix_list_14-6 > li:before {
  content: "" counter(lst-ctn-kix_list_14-6, lower-roman) ". "
}

ol.lst-kix_list_15-1 {
  list-style-type: none
}

ol.lst-kix_list_7-4.start {
  counter-reset: lst-ctn-kix_list_7-4 0
}

.lst-kix_list_17-0 > li {
  counter-increment: lst-ctn-kix_list_17-0
}

.lst-kix_list_9-0 > li {
  counter-increment: lst-ctn-kix_list_9-0
}

.lst-kix_list_34-6 > li {
  counter-increment: lst-ctn-kix_list_34-6
}

ul.lst-kix_list_28-2 {
  list-style-type: none
}

ul.lst-kix_list_28-3 {
  list-style-type: none
}

ul.lst-kix_list_28-4 {
  list-style-type: none
}

ul.lst-kix_list_28-5 {
  list-style-type: none
}

ol.lst-kix_list_25-3.start {
  counter-reset: lst-ctn-kix_list_25-3 0
}

ul.lst-kix_list_28-6 {
  list-style-type: none
}

ol.lst-kix_list_11-8.start {
  counter-reset: lst-ctn-kix_list_11-8 0
}

ul.lst-kix_list_28-7 {
  list-style-type: none
}

ul.lst-kix_list_28-8 {
  list-style-type: none
}

.lst-kix_list_14-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_14-2, lower-latin) ") "
}

.lst-kix_list_20-7 > li {
  counter-increment: lst-ctn-kix_list_20-7
}

ol.lst-kix_list_26-7 {
  list-style-type: none
}

ol.lst-kix_list_35-6.start {
  counter-reset: lst-ctn-kix_list_35-6 0
}

ol.lst-kix_list_26-6 {
  list-style-type: none
}

ol.lst-kix_list_26-8 {
  list-style-type: none
}

ol.lst-kix_list_26-3 {
  list-style-type: none
}

ol.lst-kix_list_12-0.start {
  counter-reset: lst-ctn-kix_list_12-0 0
}

ol.lst-kix_list_26-2 {
  list-style-type: none
}

ol.lst-kix_list_26-5 {
  list-style-type: none
}

ol.lst-kix_list_26-4 {
  list-style-type: none
}

ol.lst-kix_list_26-1 {
  list-style-type: none
}

ol.lst-kix_list_26-0 {
  list-style-type: none
}

.lst-kix_list_32-2 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_32-1 > li:before {
  content: "o  "
}

.lst-kix_list_32-3 > li:before {
  content: "\0025cf   "
}

ol.lst-kix_list_21-6.start {
  counter-reset: lst-ctn-kix_list_21-6 0
}

.lst-kix_list_14-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_14-8, lower-roman) ") "
}

.lst-kix_list_31-7 > li {
  counter-increment: lst-ctn-kix_list_31-7
}

.lst-kix_list_32-0 > li:before {
  content: "\0025cf   "
}

ol.lst-kix_list_15-5.start {
  counter-reset: lst-ctn-kix_list_15-5 0
}

.lst-kix_list_5-0 > li:before {
  content: "" counter(lst-ctn-kix_list_5-0, decimal) ". "
}

ol.lst-kix_list_6-0 {
  list-style-type: none
}

ol.lst-kix_list_6-1 {
  list-style-type: none
}

.lst-kix_list_14-8 > li {
  counter-increment: lst-ctn-kix_list_14-8
}

ol.lst-kix_list_22-3.start {
  counter-reset: lst-ctn-kix_list_22-3 0
}

.lst-kix_list_5-4 > li {
  counter-increment: lst-ctn-kix_list_5-4
}

.lst-kix_list_5-3 > li:before {
  content: "" counter(lst-ctn-kix_list_5-3, decimal) ". "
}

ol.lst-kix_list_24-6.start {
  counter-reset: lst-ctn-kix_list_24-6 0
}

.lst-kix_list_5-2 > li:before {
  content: "" counter(lst-ctn-kix_list_5-2, lower-roman) ". "
}

.lst-kix_list_8-3 > li {
  counter-increment: lst-ctn-kix_list_8-3
}

.lst-kix_list_5-1 > li:before {
  content: "" counter(lst-ctn-kix_list_5-1, lower-latin) ". "
}

ol.lst-kix_list_18-0.start {
  counter-reset: lst-ctn-kix_list_18-0 0
}

.lst-kix_list_5-7 > li:before {
  content: "" counter(lst-ctn-kix_list_5-7, lower-latin) ". "
}

.lst-kix_list_5-6 > li:before {
  content: "" counter(lst-ctn-kix_list_5-6, decimal) ". "
}

.lst-kix_list_5-8 > li:before {
  content: "" counter(lst-ctn-kix_list_5-8, lower-roman) ". "
}

ol.lst-kix_list_6-6 {
  list-style-type: none
}

ol.lst-kix_list_6-7 {
  list-style-type: none
}

.lst-kix_list_5-4 > li:before {
  content: "" counter(lst-ctn-kix_list_5-4, lower-latin) ". "
}

ol.lst-kix_list_6-8 {
  list-style-type: none
}

.lst-kix_list_5-5 > li:before {
  content: "" counter(lst-ctn-kix_list_5-5, lower-roman) ". "
}

ol.lst-kix_list_6-2 {
  list-style-type: none
}

ol.lst-kix_list_6-3 {
  list-style-type: none
}

ol.lst-kix_list_6-4 {
  list-style-type: none
}

ol.lst-kix_list_6-5 {
  list-style-type: none
}

ol.lst-kix_list_12-5.start {
  counter-reset: lst-ctn-kix_list_12-5 0
}

.lst-kix_list_6-1 > li:before {
  content: "" counter(lst-ctn-kix_list_6-1, decimal) ". "
}

.lst-kix_list_6-3 > li:before {
  content: "" counter(lst-ctn-kix_list_6-3, decimal) ". "
}

.lst-kix_list_6-8 > li {
  counter-increment: lst-ctn-kix_list_6-8
}

.lst-kix_list_6-0 > li:before {
  content: "" counter(lst-ctn-kix_list_6-0, decimal) ". "
}

.lst-kix_list_6-4 > li:before {
  content: "" counter(lst-ctn-kix_list_6-4, decimal) ". "
}

ol.lst-kix_list_14-8.start {
  counter-reset: lst-ctn-kix_list_14-8 0
}

.lst-kix_list_6-2 > li:before {
  content: "" counter(lst-ctn-kix_list_6-2, decimal) ". "
}

ol.lst-kix_list_15-0.start {
  counter-reset: lst-ctn-kix_list_15-0 0
}

ol.lst-kix_list_35-1.start {
  counter-reset: lst-ctn-kix_list_35-1 0
}

.lst-kix_list_6-8 > li:before {
  content: "" counter(lst-ctn-kix_list_6-8, decimal) ". "
}

.lst-kix_list_6-5 > li:before {
  content: "" counter(lst-ctn-kix_list_6-5, decimal) ". "
}

.lst-kix_list_6-7 > li:before {
  content: "" counter(lst-ctn-kix_list_6-7, decimal) ". "
}

.lst-kix_list_6-6 > li:before {
  content: "" counter(lst-ctn-kix_list_6-6, decimal) ". "
}

ol.lst-kix_list_17-8 {
  list-style-type: none
}

ol.lst-kix_list_10-6.start {
  counter-reset: lst-ctn-kix_list_10-6 0
}

ol.lst-kix_list_27-6.start {
  counter-reset: lst-ctn-kix_list_27-6 0
}

.lst-kix_list_7-4 > li:before {
  content: "" counter(lst-ctn-kix_list_7-4, decimal) ". "
}

.lst-kix_list_7-6 > li:before {
  content: "" counter(lst-ctn-kix_list_7-6, decimal) ". "
}

ol.lst-kix_list_17-4 {
  list-style-type: none
}

.lst-kix_list_18-5 > li {
  counter-increment: lst-ctn-kix_list_18-5
}

ol.lst-kix_list_19-7.start {
  counter-reset: lst-ctn-kix_list_19-7 0
}

ol.lst-kix_list_17-5 {
  list-style-type: none
}

ol.lst-kix_list_6-2.start {
  counter-reset: lst-ctn-kix_list_6-2 0
}

.lst-kix_list_15-5 > li {
  counter-increment: lst-ctn-kix_list_15-5
}

ol.lst-kix_list_17-6 {
  list-style-type: none
}

ol.lst-kix_list_24-1.start {
  counter-reset: lst-ctn-kix_list_24-1 0
}

ol.lst-kix_list_17-7 {
  list-style-type: none
}

ol.lst-kix_list_17-0 {
  list-style-type: none
}

.lst-kix_list_22-2 > li {
  counter-increment: lst-ctn-kix_list_22-2
}

ol.lst-kix_list_17-1 {
  list-style-type: none
}

ol.lst-kix_list_17-2 {
  list-style-type: none
}

.lst-kix_list_7-2 > li:before {
  content: "" counter(lst-ctn-kix_list_7-2, decimal) ". "
}

ol.lst-kix_list_17-3 {
  list-style-type: none
}

.lst-kix_list_7-6 > li {
  counter-increment: lst-ctn-kix_list_7-6
}

.lst-kix_list_27-2 > li {
  counter-increment: lst-ctn-kix_list_27-2
}

.lst-kix_list_31-0 > li {
  counter-increment: lst-ctn-kix_list_31-0
}

ol.lst-kix_list_22-8.start {
  counter-reset: lst-ctn-kix_list_22-8 0
}

.lst-kix_list_34-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_34-8, lower-roman) ") "
}

.lst-kix_list_31-0 > li:before {
  content: "" counter(lst-ctn-kix_list_31-0, decimal) ". "
}

.lst-kix_list_12-6 > li {
  counter-increment: lst-ctn-kix_list_12-6
}

.lst-kix_list_24-3 > li {
  counter-increment: lst-ctn-kix_list_24-3
}

.lst-kix_list_13-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_13-7, lower-latin) ") "
}

ol.lst-kix_list_34-4.start {
  counter-reset: lst-ctn-kix_list_34-4 0
}

.lst-kix_list_7-8 > li:before {
  content: "" counter(lst-ctn-kix_list_7-8, decimal) ". "
}

ol.lst-kix_list_23-0.start {
  counter-reset: lst-ctn-kix_list_23-0 0
}

.lst-kix_list_15-6 > li {
  counter-increment: lst-ctn-kix_list_15-6
}

.lst-kix_list_15-5 > li:before {
  content: "" counter(lst-ctn-kix_list_15-5, lower-latin) ". "
}

.lst-kix_list_31-6 > li:before {
  content: "" counter(lst-ctn-kix_list_31-6, decimal) ") "
}

.lst-kix_list_31-8 > li:before {
  content: "" counter(lst-ctn-kix_list_31-8, lower-roman) ") "
}

ol.lst-kix_list_26-0.start {
  counter-reset: lst-ctn-kix_list_26-0 0
}

.lst-kix_list_9-8 > li {
  counter-increment: lst-ctn-kix_list_9-8
}

.lst-kix_list_13-4 > li {
  counter-increment: lst-ctn-kix_list_13-4
}

.lst-kix_list_27-3 > li {
  counter-increment: lst-ctn-kix_list_27-3
}

.lst-kix_list_4-1 > li:before {
  content: "o  "
}

.lst-kix_list_31-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_31-2, lower-roman) ") "
}

.lst-kix_list_31-4 > li:before {
  content: "" counter(lst-ctn-kix_list_31-4, lower-latin) ". "
}

.lst-kix_list_15-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_15-7, lower-latin) ") "
}

.lst-kix_list_17-7 > li {
  counter-increment: lst-ctn-kix_list_17-7
}

ol.lst-kix_list_33-3.start {
  counter-reset: lst-ctn-kix_list_33-3 0
}

.lst-kix_list_4-3 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_4-5 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_10-5 > li {
  counter-increment: lst-ctn-kix_list_10-5
}

.lst-kix_list_15-1 > li:before {
  content: "" counter(lst-ctn-kix_list_15-0, decimal) "." counter(lst-ctn-kix_list_15-1, decimal) " "
}

.lst-kix_list_24-4 > li {
  counter-increment: lst-ctn-kix_list_24-4
}

.lst-kix_list_33-1 > li {
  counter-increment: lst-ctn-kix_list_33-1
}

.lst-kix_list_15-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_15-3, lower-roman) ") "
}

.lst-kix_list_22-1 > li {
  counter-increment: lst-ctn-kix_list_22-1
}

.lst-kix_list_16-2 > li {
  counter-increment: lst-ctn-kix_list_16-2
}

.lst-kix_list_33-2 > li {
  counter-increment: lst-ctn-kix_list_33-2
}

.lst-kix_list_30-2 > li {
  counter-increment: lst-ctn-kix_list_30-2
}

ol.lst-kix_list_9-2.start {
  counter-reset: lst-ctn-kix_list_9-2 0
}

.lst-kix_list_20-0 > li {
  counter-increment: lst-ctn-kix_list_20-0
}

ol.lst-kix_list_16-7.start {
  counter-reset: lst-ctn-kix_list_16-7 0
}

.lst-kix_list_32-4 > li:before {
  content: "o  "
}

.lst-kix_list_11-2 > li {
  counter-increment: lst-ctn-kix_list_11-2
}

.lst-kix_list_26-5 > li {
  counter-increment: lst-ctn-kix_list_26-5
}

.lst-kix_list_19-2 > li {
  counter-increment: lst-ctn-kix_list_19-2
}

.lst-kix_list_33-8 > li {
  counter-increment: lst-ctn-kix_list_33-8
}

.lst-kix_list_33-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_33-4, decimal) ") "
}

.lst-kix_list_30-3 > li {
  counter-increment: lst-ctn-kix_list_30-3
}

ol.lst-kix_list_8-8 {
  list-style-type: none
}

.lst-kix_list_12-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_12-3, lower-roman) ") "
}

ol.lst-kix_list_31-4.start {
  counter-reset: lst-ctn-kix_list_31-4 0
}

.lst-kix_list_32-6 > li:before {
  content: "\0025cf   "
}

ol.lst-kix_list_8-4 {
  list-style-type: none
}

.lst-kix_list_12-1 > li:before {
  content: "" counter(lst-ctn-kix_list_12-0, decimal) "." counter(lst-ctn-kix_list_12-1, decimal) " "
}

ol.lst-kix_list_8-5 {
  list-style-type: none
}

.lst-kix_list_33-0 > li:before {
  content: "" counter(lst-ctn-kix_list_33-0, decimal) ". "
}

.lst-kix_list_33-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_33-2, lower-latin) ") "
}

ol.lst-kix_list_8-6 {
  list-style-type: none
}

ol.lst-kix_list_8-7 {
  list-style-type: none
}

.lst-kix_list_32-8 > li:before {
  content: "\0025aa   "
}

ol.lst-kix_list_8-0 {
  list-style-type: none
}

.lst-kix_list_16-3 > li {
  counter-increment: lst-ctn-kix_list_16-3
}

ol.lst-kix_list_8-1 {
  list-style-type: none
}

.lst-kix_list_23-6 > li {
  counter-increment: lst-ctn-kix_list_23-6
}

ol.lst-kix_list_8-2 {
  list-style-type: none
}

.lst-kix_list_13-3 > li {
  counter-increment: lst-ctn-kix_list_13-3
}

ol.lst-kix_list_13-6.start {
  counter-reset: lst-ctn-kix_list_13-6 0
}

ol.lst-kix_list_8-3 {
  list-style-type: none
}

ol.lst-kix_list_25-8.start {
  counter-reset: lst-ctn-kix_list_25-8 0
}

.lst-kix_list_34-0 > li:before {
  content: "" counter(lst-ctn-kix_list_34-0, decimal) ". "
}

.lst-kix_list_10-4 > li {
  counter-increment: lst-ctn-kix_list_10-4
}

.lst-kix_list_14-1 > li {
  counter-increment: lst-ctn-kix_list_14-1
}

.lst-kix_list_21-4 > li {
  counter-increment: lst-ctn-kix_list_21-4
}

.lst-kix_list_13-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_13-3, lower-roman) ") "
}

.lst-kix_list_34-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_34-4, decimal) ") "
}

.lst-kix_list_35-3 > li {
  counter-increment: lst-ctn-kix_list_35-3
}

.lst-kix_list_34-6 > li:before {
  content: "" counter(lst-ctn-kix_list_34-6, lower-roman) ". "
}

.lst-kix_list_13-5 > li:before {
  content: "" counter(lst-ctn-kix_list_13-5, lower-latin) ". "
}

.lst-kix_list_12-5 > li:before {
  content: "" counter(lst-ctn-kix_list_12-5, lower-latin) ". "
}

ol.lst-kix_list_13-7.start {
  counter-reset: lst-ctn-kix_list_13-7 0
}

.lst-kix_list_18-4 > li {
  counter-increment: lst-ctn-kix_list_18-4
}

.lst-kix_list_12-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_12-7, lower-latin) ") "
}

.lst-kix_list_29-4 > li {
  counter-increment: lst-ctn-kix_list_29-4
}

.lst-kix_list_33-6 > li:before {
  content: "" counter(lst-ctn-kix_list_33-6, lower-roman) ". "
}

ol.lst-kix_list_21-1.start {
  counter-reset: lst-ctn-kix_list_21-1 0
}

.lst-kix_list_33-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_33-8, lower-roman) ") "
}

ol.lst-kix_list_29-0.start {
  counter-reset: lst-ctn-kix_list_29-0 0
}

.lst-kix_list_34-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_34-2, lower-latin) ") "
}

.lst-kix_list_25-1 > li {
  counter-increment: lst-ctn-kix_list_25-1
}

.lst-kix_list_13-1 > li:before {
  content: "" counter(lst-ctn-kix_list_13-0, decimal) "." counter(lst-ctn-kix_list_13-1, decimal) " "
}

.lst-kix_list_34-5 > li {
  counter-increment: lst-ctn-kix_list_34-5
}

.lst-kix_list_30-5 > li:before {
  content: "" counter(lst-ctn-kix_list_30-5, lower-latin) ". "
}

.lst-kix_list_22-8 > li {
  counter-increment: lst-ctn-kix_list_22-8
}

.lst-kix_list_35-0 > li:before {
  content: "" counter(lst-ctn-kix_list_35-0, decimal) ". "
}

.lst-kix_list_35-1 > li:before {
  content: "" counter(lst-ctn-kix_list_35-1, lower-latin) ". "
}

.lst-kix_list_35-4 > li:before {
  content: "" counter(lst-ctn-kix_list_35-4, lower-latin) ". "
}

.lst-kix_list_35-5 > li:before {
  content: "" counter(lst-ctn-kix_list_35-5, lower-roman) ". "
}

ol.lst-kix_list_11-6 {
  list-style-type: none
}

ol.lst-kix_list_11-7 {
  list-style-type: none
}

ol.lst-kix_list_11-8 {
  list-style-type: none
}

ol.lst-kix_list_33-2.start {
  counter-reset: lst-ctn-kix_list_33-2 0
}

.lst-kix_list_30-1 > li:before {
  content: "" counter(lst-ctn-kix_list_30-0, decimal) "." counter(lst-ctn-kix_list_30-1, decimal) " "
}

ol.lst-kix_list_11-2 {
  list-style-type: none
}

ol.lst-kix_list_11-3 {
  list-style-type: none
}

.lst-kix_list_3-0 > li:before {
  content: "\0025cf   "
}

ol.lst-kix_list_11-4 {
  list-style-type: none
}

.lst-kix_list_30-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_30-2, lower-latin) ") "
}

ol.lst-kix_list_11-5 {
  list-style-type: none
}

ol.lst-kix_list_20-5.start {
  counter-reset: lst-ctn-kix_list_20-5 0
}

ol.lst-kix_list_13-1.start {
  counter-reset: lst-ctn-kix_list_13-1 0
}

ol.lst-kix_list_11-0 {
  list-style-type: none
}

ol.lst-kix_list_11-1 {
  list-style-type: none
}

.lst-kix_list_31-6 > li {
  counter-increment: lst-ctn-kix_list_31-6
}

.lst-kix_list_3-4 > li:before {
  content: "o  "
}

.lst-kix_list_3-3 > li:before {
  content: "\0025cf   "
}

.lst-kix_list_8-0 > li:before {
  content: "" counter(lst-ctn-kix_list_8-0, decimal) ". "
}

.lst-kix_list_30-6 > li:before {
  content: "" counter(lst-ctn-kix_list_30-6, lower-roman) ". "
}

.lst-kix_list_8-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_8-7, lower-latin) ") "
}

.lst-kix_list_3-8 > li:before {
  content: "\0025aa   "
}

ol.lst-kix_list_10-7.start {
  counter-reset: lst-ctn-kix_list_10-7 0
}

.lst-kix_list_8-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_8-3, lower-roman) ") "
}

ol.lst-kix_list_22-7 {
  list-style-type: none
}

ol.lst-kix_list_22-6 {
  list-style-type: none
}

ol.lst-kix_list_22-8 {
  list-style-type: none
}

.lst-kix_list_3-7 > li:before {
  content: "o  "
}

ol.lst-kix_list_22-3 {
  list-style-type: none
}

ol.lst-kix_list_22-2 {
  list-style-type: none
}

.lst-kix_list_8-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_8-4, decimal) ") "
}

ol.lst-kix_list_22-5 {
  list-style-type: none
}

ol.lst-kix_list_22-4 {
  list-style-type: none
}

.lst-kix_list_19-1 > li {
  counter-increment: lst-ctn-kix_list_19-1
}

ol.lst-kix_list_22-1 {
  list-style-type: none
}

ol.lst-kix_list_22-0 {
  list-style-type: none
}

ol.lst-kix_list_8-5.start {
  counter-reset: lst-ctn-kix_list_8-5 0
}

ol.lst-kix_list_26-4.start {
  counter-reset: lst-ctn-kix_list_26-4 0
}

.lst-kix_list_35-8 > li:before {
  content: "" counter(lst-ctn-kix_list_35-8, lower-roman) ". "
}

.lst-kix_list_17-1 > li {
  counter-increment: lst-ctn-kix_list_17-1
}

.lst-kix_list_11-1 > li:before {
  content: "" counter(lst-ctn-kix_list_11-0, decimal) "." counter(lst-ctn-kix_list_11-1, decimal) " "
}

ol.lst-kix_list_31-0.start {
  counter-reset: lst-ctn-kix_list_31-0 0
}

.lst-kix_list_11-0 > li:before {
  content: "" counter(lst-ctn-kix_list_11-0, decimal) ". "
}

ol.lst-kix_list_9-3.start {
  counter-reset: lst-ctn-kix_list_9-3 0
}

.lst-kix_list_8-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_8-8, lower-roman) ") "
}

.lst-kix_list_35-4 > li {
  counter-increment: lst-ctn-kix_list_35-4
}

.lst-kix_list_16-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_16-8, lower-roman) ") "
}

.lst-kix_list_16-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_16-7, lower-latin) ") "
}

.lst-kix_list_17-8 > li {
  counter-increment: lst-ctn-kix_list_17-8
}

ol.lst-kix_list_35-8 {
  list-style-type: none
}

.lst-kix_list_4-8 > li:before {
  content: "\0025aa   "
}

ol.lst-kix_list_35-5 {
  list-style-type: none
}

ol.lst-kix_list_35-4 {
  list-style-type: none
}

.lst-kix_list_21-5 > li {
  counter-increment: lst-ctn-kix_list_21-5
}

.lst-kix_list_4-7 > li:before {
  content: "\0025aa   "
}

ol.lst-kix_list_35-7 {
  list-style-type: none
}

.lst-kix_list_14-2 > li {
  counter-increment: lst-ctn-kix_list_14-2
}

ol.lst-kix_list_20-0.start {
  counter-reset: lst-ctn-kix_list_20-0 0
}

.lst-kix_list_17-0 > li:before {
  content: "" counter(lst-ctn-kix_list_17-0, decimal) ". "
}

ol.lst-kix_list_35-6 {
  list-style-type: none
}

ol.lst-kix_list_35-1 {
  list-style-type: none
}

ol.lst-kix_list_35-0 {
  list-style-type: none
}

ol.lst-kix_list_35-3 {
  list-style-type: none
}

ol.lst-kix_list_35-2 {
  list-style-type: none
}

ul.lst-kix_list_4-8 {
  list-style-type: none
}

.lst-kix_list_16-0 > li:before {
  content: "" counter(lst-ctn-kix_list_16-0, decimal) ". "
}

ul.lst-kix_list_4-6 {
  list-style-type: none
}

ul.lst-kix_list_4-7 {
  list-style-type: none
}

.lst-kix_list_8-4 > li {
  counter-increment: lst-ctn-kix_list_8-4
}

ul.lst-kix_list_4-0 {
  list-style-type: none
}

.lst-kix_list_16-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_16-4, decimal) ") "
}

ul.lst-kix_list_4-1 {
  list-style-type: none
}

.lst-kix_list_16-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_16-3, lower-roman) ") "
}

ul.lst-kix_list_4-4 {
  list-style-type: none
}

ul.lst-kix_list_4-5 {
  list-style-type: none
}

ul.lst-kix_list_4-2 {
  list-style-type: none
}

ul.lst-kix_list_4-3 {
  list-style-type: none
}

.lst-kix_list_11-3 > li {
  counter-increment: lst-ctn-kix_list_11-3
}

ol.lst-kix_list_18-1.start {
  counter-reset: lst-ctn-kix_list_18-1 0
}

.lst-kix_list_30-1 > li {
  counter-increment: lst-ctn-kix_list_30-1
}

ol.lst-kix_list_8-6.start {
  counter-reset: lst-ctn-kix_list_8-6 0
}

.lst-kix_list_17-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_17-7, lower-latin) ") "
}

.lst-kix_list_17-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_17-8, lower-roman) ") "
}

.lst-kix_list_33-0 > li {
  counter-increment: lst-ctn-kix_list_33-0
}

.lst-kix_list_17-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_17-3, lower-roman) ") "
}

.lst-kix_list_17-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_17-4, decimal) ") "
}

ol.lst-kix_list_8-0.start {
  counter-reset: lst-ctn-kix_list_8-0 0
}

.lst-kix_list_7-0 > li:before {
  content: "" counter(lst-ctn-kix_list_7-0, decimal) ". "
}

ol.lst-kix_list_27-7.start {
  counter-reset: lst-ctn-kix_list_27-7 0
}

ol.lst-kix_list_19-6.start {
  counter-reset: lst-ctn-kix_list_19-6 0
}

ol.lst-kix_list_9-7.start {
  counter-reset: lst-ctn-kix_list_9-7 0
}

ol.lst-kix_list_13-8 {
  list-style-type: none
}

.lst-kix_list_2-4 > li:before {
  content: "o  "
}

.lst-kix_list_2-8 > li:before {
  content: "\0025aa   "
}

ol.lst-kix_list_13-4 {
  list-style-type: none
}

ol.lst-kix_list_13-5 {
  list-style-type: none
}

ol.lst-kix_list_13-6 {
  list-style-type: none
}

ol.lst-kix_list_13-7 {
  list-style-type: none
}

ol.lst-kix_list_13-0 {
  list-style-type: none
}

ol.lst-kix_list_13-1 {
  list-style-type: none
}

ol.lst-kix_list_13-2 {
  list-style-type: none
}

.lst-kix_list_7-3 > li:before {
  content: "" counter(lst-ctn-kix_list_7-3, decimal) ". "
}

ol.lst-kix_list_13-3 {
  list-style-type: none
}

.lst-kix_list_10-0 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) ". "
}

.lst-kix_list_9-7 > li {
  counter-increment: lst-ctn-kix_list_9-7
}

ol.lst-kix_list_21-7.start {
  counter-reset: lst-ctn-kix_list_21-7 0
}

.lst-kix_list_13-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_13-8, lower-roman) ") "
}

.lst-kix_list_31-1 > li:before {
  content: "(" counter(lst-ctn-kix_list_31-1, lower-latin) ") "
}

.lst-kix_list_18-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_18-3, lower-roman) ") "
}

.lst-kix_list_18-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_18-7, lower-latin) ") "
}

.lst-kix_list_18-6 > li {
  counter-increment: lst-ctn-kix_list_18-6
}

.lst-kix_list_7-7 > li:before {
  content: "" counter(lst-ctn-kix_list_7-7, decimal) ". "
}

ol.lst-kix_list_8-1.start {
  counter-reset: lst-ctn-kix_list_8-1 0
}

.lst-kix_list_15-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_15-4, decimal) ") "
}

.lst-kix_list_31-5 > li:before {
  content: "" counter(lst-ctn-kix_list_31-5, lower-roman) ". "
}

ol.lst-kix_list_19-1.start {
  counter-reset: lst-ctn-kix_list_19-1 0
}

ol.lst-kix_list_24-8 {
  list-style-type: none
}

.lst-kix_list_10-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_10-4, decimal) ") "
}

.lst-kix_list_10-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_10-8, lower-roman) ") "
}

ol.lst-kix_list_20-4.start {
  counter-reset: lst-ctn-kix_list_20-4 0
}

.lst-kix_list_4-0 > li:before {
  content: "\0025cf   "
}

ol.lst-kix_list_24-5 {
  list-style-type: none
}

ol.lst-kix_list_24-4 {
  list-style-type: none
}

ol.lst-kix_list_24-7 {
  list-style-type: none
}

ol.lst-kix_list_25-2.start {
  counter-reset: lst-ctn-kix_list_25-2 0
}

.lst-kix_list_15-0 > li:before {
  content: "" counter(lst-ctn-kix_list_15-0, decimal) ". "
}

.lst-kix_list_15-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_15-8, lower-roman) ") "
}

ol.lst-kix_list_24-6 {
  list-style-type: none
}

ol.lst-kix_list_24-1 {
  list-style-type: none
}

ol.lst-kix_list_14-3.start {
  counter-reset: lst-ctn-kix_list_14-3 0
}

ol.lst-kix_list_24-0 {
  list-style-type: none
}

ol.lst-kix_list_24-3 {
  list-style-type: none
}

.lst-kix_list_15-7 > li {
  counter-increment: lst-ctn-kix_list_15-7
}

ol.lst-kix_list_24-2 {
  list-style-type: none
}

.lst-kix_list_4-4 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_9-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_9-3, lower-roman) ") "
}

ol.lst-kix_list_7-0.start {
  counter-reset: lst-ctn-kix_list_7-0 0
}

.lst-kix_list_12-8 > li {
  counter-increment: lst-ctn-kix_list_12-8
}

ol.lst-kix_list_13-2.start {
  counter-reset: lst-ctn-kix_list_13-2 0
}

ol.lst-kix_list_33-7.start {
  counter-reset: lst-ctn-kix_list_33-7 0
}

ol.lst-kix_list_14-4.start {
  counter-reset: lst-ctn-kix_list_14-4 0
}

.lst-kix_list_9-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_9-7, lower-latin) ") "
}

.lst-kix_list_29-4 > li:before {
  content: "" counter(lst-ctn-kix_list_29-4, lower-latin) ". "
}

.lst-kix_list_29-8 > li:before {
  content: "" counter(lst-ctn-kix_list_29-8, lower-roman) ". "
}

.lst-kix_list_32-5 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_11-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_11-4, decimal) ") "
}

.lst-kix_list_12-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_12-4, decimal) ") "
}

.lst-kix_list_5-3 > li {
  counter-increment: lst-ctn-kix_list_5-3
}

.lst-kix_list_29-0 > li:before {
  content: "" counter(lst-ctn-kix_list_29-0, decimal) ". "
}

.lst-kix_list_7-4 > li {
  counter-increment: lst-ctn-kix_list_7-4
}

.lst-kix_list_33-1 > li:before {
  content: "" counter(lst-ctn-kix_list_33-0, decimal) "." counter(lst-ctn-kix_list_33-1, decimal) " "
}

.lst-kix_list_1-0 > li:before {
  content: "\0025cf   "
}

ol.lst-kix_list_19-2.start {
  counter-reset: lst-ctn-kix_list_19-2 0
}

.lst-kix_list_11-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_11-8, lower-roman) ") "
}

.lst-kix_list_12-0 > li:before {
  content: "" counter(lst-ctn-kix_list_12-0, decimal) ". "
}

.lst-kix_list_1-4 > li:before {
  content: "o  "
}

.lst-kix_list_13-0 > li:before {
  content: "" counter(lst-ctn-kix_list_13-0, decimal) ". "
}

.lst-kix_list_13-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_13-4, decimal) ") "
}

.lst-kix_list_34-5 > li:before {
  content: "" counter(lst-ctn-kix_list_34-5, lower-latin) ". "
}

ol.lst-kix_list_26-5.start {
  counter-reset: lst-ctn-kix_list_26-5 0
}

.lst-kix_list_33-5 > li:before {
  content: "" counter(lst-ctn-kix_list_33-5, lower-latin) ". "
}

ol.lst-kix_list_19-3.start {
  counter-reset: lst-ctn-kix_list_19-3 0
}

.lst-kix_list_2-0 > li:before {
  content: "\0025cf   "
}

ol.lst-kix_list_33-8.start {
  counter-reset: lst-ctn-kix_list_33-8 0
}

ol.lst-kix_list_9-8.start {
  counter-reset: lst-ctn-kix_list_9-8 0
}

.lst-kix_list_1-8 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_34-1 > li:before {
  content: "" counter(lst-ctn-kix_list_34-0, decimal) "." counter(lst-ctn-kix_list_34-1, decimal) " "
}

.lst-kix_list_12-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_12-8, lower-roman) ") "
}

.lst-kix_list_8-2 > li {
  counter-increment: lst-ctn-kix_list_8-2
}

.lst-kix_list_19-0 > li:before {
  content: "" counter(lst-ctn-kix_list_19-0, decimal) ". "
}

ol.lst-kix_list_17-7.start {
  counter-reset: lst-ctn-kix_list_17-7 0
}

ol.lst-kix_list_12-6.start {
  counter-reset: lst-ctn-kix_list_12-6 0
}

.lst-kix_list_23-8 > li {
  counter-increment: lst-ctn-kix_list_23-8
}

.lst-kix_list_8-1 > li {
  counter-increment: lst-ctn-kix_list_8-1
}

.lst-kix_list_35-5 > li {
  counter-increment: lst-ctn-kix_list_35-5
}

ol.lst-kix_list_30-6 {
  list-style-type: none
}

ol.lst-kix_list_8-2.start {
  counter-reset: lst-ctn-kix_list_8-2 0
}

ol.lst-kix_list_26-1.start {
  counter-reset: lst-ctn-kix_list_26-1 0
}

ol.lst-kix_list_30-5 {
  list-style-type: none
}

.lst-kix_list_19-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_19-2, lower-latin) ") "
}

ol.lst-kix_list_30-8 {
  list-style-type: none
}

ol.lst-kix_list_21-0.start {
  counter-reset: lst-ctn-kix_list_21-0 0
}

ol.lst-kix_list_30-7 {
  list-style-type: none
}

ol.lst-kix_list_30-2 {
  list-style-type: none
}

ol.lst-kix_list_30-1 {
  list-style-type: none
}

ol.lst-kix_list_30-4 {
  list-style-type: none
}

ol.lst-kix_list_30-3 {
  list-style-type: none
}

ol.lst-kix_list_30-0 {
  list-style-type: none
}

.lst-kix_list_7-0 > li {
  counter-increment: lst-ctn-kix_list_7-0
}

.lst-kix_list_19-0 > li {
  counter-increment: lst-ctn-kix_list_19-0
}

.lst-kix_list_29-6 > li {
  counter-increment: lst-ctn-kix_list_29-6
}

ol.lst-kix_list_31-3.start {
  counter-reset: lst-ctn-kix_list_31-3 0
}

ol.lst-kix_list_19-8.start {
  counter-reset: lst-ctn-kix_list_19-8 0
}

.lst-kix_list_19-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_19-8, lower-roman) ") "
}

ol.lst-kix_list_14-7.start {
  counter-reset: lst-ctn-kix_list_14-7 0
}

ol.lst-kix_list_20-8.start {
  counter-reset: lst-ctn-kix_list_20-8 0
}

.lst-kix_list_19-5 > li:before {
  content: "" counter(lst-ctn-kix_list_19-5, lower-latin) ". "
}

ol.lst-kix_list_34-8.start {
  counter-reset: lst-ctn-kix_list_34-8 0
}

.lst-kix_list_19-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_19-7, lower-latin) ") "
}

.lst-kix_list_9-2 > li {
  counter-increment: lst-ctn-kix_list_9-2
}

ol.lst-kix_list_23-8.start {
  counter-reset: lst-ctn-kix_list_23-8 0
}

.lst-kix_list_24-5 > li {
  counter-increment: lst-ctn-kix_list_24-5
}

ol.lst-kix_list_17-2.start {
  counter-reset: lst-ctn-kix_list_17-2 0
}

.lst-kix_list_13-2 > li {
  counter-increment: lst-ctn-kix_list_13-2
}

ol.lst-kix_list_21-5.start {
  counter-reset: lst-ctn-kix_list_21-5 0
}

.lst-kix_list_19-7 > li {
  counter-increment: lst-ctn-kix_list_19-7
}

.lst-kix_list_14-3 > li {
  counter-increment: lst-ctn-kix_list_14-3
}

ol.lst-kix_list_15-6.start {
  counter-reset: lst-ctn-kix_list_15-6 0
}

.lst-kix_list_25-6 > li {
  counter-increment: lst-ctn-kix_list_25-6
}

.lst-kix_list_12-1 > li {
  counter-increment: lst-ctn-kix_list_12-1
}

ol.lst-kix_list_31-8.start {
  counter-reset: lst-ctn-kix_list_31-8 0
}

.lst-kix_list_18-1 > li:before {
  content: "" counter(lst-ctn-kix_list_18-0, decimal) "." counter(lst-ctn-kix_list_18-1, decimal) " "
}

.lst-kix_list_33-3 > li {
  counter-increment: lst-ctn-kix_list_33-3
}

ol.lst-kix_list_25-4.start {
  counter-reset: lst-ctn-kix_list_25-4 0
}

.lst-kix_list_23-4 > li {
  counter-increment: lst-ctn-kix_list_23-4
}

ol.lst-kix_list_23-1.start {
  counter-reset: lst-ctn-kix_list_23-1 0
}

ol.lst-kix_list_34-3.start {
  counter-reset: lst-ctn-kix_list_34-3 0
}

.lst-kix_list_23-1 > li {
  counter-increment: lst-ctn-kix_list_23-1
}

.lst-kix_list_34-4 > li {
  counter-increment: lst-ctn-kix_list_34-4
}

.lst-kix_list_2-7 > li:before {
  content: "o  "
}

.lst-kix_list_24-2 > li {
  counter-increment: lst-ctn-kix_list_24-2
}

.lst-kix_list_2-5 > li:before {
  content: "\0025aa   "
}

ol.lst-kix_list_17-0.start {
  counter-reset: lst-ctn-kix_list_17-0 0
}

.lst-kix_list_27-5 > li:before {
  content: "" counter(lst-ctn-kix_list_27-5, lower-latin) ". "
}

ol.lst-kix_list_10-3.start {
  counter-reset: lst-ctn-kix_list_10-3 0
}

.lst-kix_list_22-3 > li {
  counter-increment: lst-ctn-kix_list_22-3
}

.lst-kix_list_18-6 > li:before {
  content: "" counter(lst-ctn-kix_list_18-6, lower-roman) ". "
}

.lst-kix_list_14-6 > li {
  counter-increment: lst-ctn-kix_list_14-6
}

.lst-kix_list_10-1 > li:before {
  content: "" counter(lst-ctn-kix_list_10-0, decimal) "." counter(lst-ctn-kix_list_10-1, decimal) " "
}

.lst-kix_list_18-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_18-4, decimal) ") "
}

.lst-kix_list_7-7 > li {
  counter-increment: lst-ctn-kix_list_7-7
}

ol.lst-kix_list_15-1.start {
  counter-reset: lst-ctn-kix_list_15-1 0
}

ol.lst-kix_list_15-4.start {
  counter-reset: lst-ctn-kix_list_15-4 0
}

.lst-kix_list_10-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_10-3, lower-roman) ") "
}

.lst-kix_list_15-4 > li {
  counter-increment: lst-ctn-kix_list_15-4
}

ol.lst-kix_list_7-3.start {
  counter-reset: lst-ctn-kix_list_7-3 0
}

.lst-kix_list_34-0 > li {
  counter-increment: lst-ctn-kix_list_34-0
}

.lst-kix_list_26-4 > li {
  counter-increment: lst-ctn-kix_list_26-4
}

ol.lst-kix_list_5-7.start {
  counter-reset: lst-ctn-kix_list_5-7 0
}

.lst-kix_list_20-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_20-8, lower-roman) ") "
}

.lst-kix_list_29-7 > li:before {
  content: "" counter(lst-ctn-kix_list_29-7, lower-latin) ". "
}

.lst-kix_list_29-5 > li:before {
  content: "" counter(lst-ctn-kix_list_29-5, lower-roman) ". "
}

.lst-kix_list_20-0 > li:before {
  content: "" counter(lst-ctn-kix_list_20-0, decimal) ". "
}

ol.lst-kix_list_10-7 {
  list-style-type: none
}

.lst-kix_list_9-6 > li:before {
  content: "" counter(lst-ctn-kix_list_9-6, lower-roman) ". "
}

ol.lst-kix_list_10-8 {
  list-style-type: none
}

ol.lst-kix_list_10-3 {
  list-style-type: none
}

.lst-kix_list_9-4 > li:before {
  content: "(" counter(lst-ctn-kix_list_9-4, decimal) ") "
}

.lst-kix_list_30-8 > li {
  counter-increment: lst-ctn-kix_list_30-8
}

ol.lst-kix_list_10-4 {
  list-style-type: none
}

ol.lst-kix_list_34-5.start {
  counter-reset: lst-ctn-kix_list_34-5 0
}

ol.lst-kix_list_10-5 {
  list-style-type: none
}

ol.lst-kix_list_10-6 {
  list-style-type: none
}

.lst-kix_list_20-6 > li:before {
  content: "" counter(lst-ctn-kix_list_20-6, lower-roman) ". "
}

.lst-kix_list_23-0 > li {
  counter-increment: lst-ctn-kix_list_23-0
}

ol.lst-kix_list_10-0 {
  list-style-type: none
}

ol.lst-kix_list_10-1 {
  list-style-type: none
}

ul.lst-kix_list_2-8 {
  list-style-type: none
}

ol.lst-kix_list_10-2 {
  list-style-type: none
}

ol.lst-kix_list_12-1.start {
  counter-reset: lst-ctn-kix_list_12-1 0
}

.lst-kix_list_11-5 > li:before {
  content: "" counter(lst-ctn-kix_list_11-5, lower-latin) ". "
}

ul.lst-kix_list_2-2 {
  list-style-type: none
}

ol.lst-kix_list_21-2.start {
  counter-reset: lst-ctn-kix_list_21-2 0
}

ul.lst-kix_list_2-3 {
  list-style-type: none
}

ul.lst-kix_list_2-0 {
  list-style-type: none
}

ul.lst-kix_list_2-1 {
  list-style-type: none
}

ul.lst-kix_list_2-6 {
  list-style-type: none
}

.lst-kix_list_20-6 > li {
  counter-increment: lst-ctn-kix_list_20-6
}

.lst-kix_list_1-1 > li:before {
  content: "o  "
}

ul.lst-kix_list_2-7 {
  list-style-type: none
}

.lst-kix_list_11-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_11-7, lower-latin) ") "
}

ul.lst-kix_list_2-4 {
  list-style-type: none
}

ul.lst-kix_list_2-5 {
  list-style-type: none
}

.lst-kix_list_8-5 > li {
  counter-increment: lst-ctn-kix_list_8-5
}

ol.lst-kix_list_25-7.start {
  counter-reset: lst-ctn-kix_list_25-7 0
}

.lst-kix_list_1-3 > li:before {
  content: "\0025cf   "
}

ol.lst-kix_list_34-6.start {
  counter-reset: lst-ctn-kix_list_34-6 0
}

ol.lst-kix_list_10-5.start {
  counter-reset: lst-ctn-kix_list_10-5 0
}

.lst-kix_list_28-3 > li:before {
  content: "\0025cf   "
}

ol.lst-kix_list_21-8 {
  list-style-type: none
}

ol.lst-kix_list_21-7 {
  list-style-type: none
}

ol.lst-kix_list_21-4 {
  list-style-type: none
}

ol.lst-kix_list_21-3 {
  list-style-type: none
}

ol.lst-kix_list_21-6 {
  list-style-type: none
}

.lst-kix_list_14-7 > li {
  counter-increment: lst-ctn-kix_list_14-7
}

ol.lst-kix_list_21-5 {
  list-style-type: none
}

ol.lst-kix_list_21-0 {
  list-style-type: none
}

ol.lst-kix_list_7-5.start {
  counter-reset: lst-ctn-kix_list_7-5 0
}

ol.lst-kix_list_31-5.start {
  counter-reset: lst-ctn-kix_list_31-5 0
}

ol.lst-kix_list_21-2 {
  list-style-type: none
}

ol.lst-kix_list_21-1 {
  list-style-type: none
}

.lst-kix_list_27-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_27-7, lower-latin) ") "
}

.lst-kix_list_25-7 > li {
  counter-increment: lst-ctn-kix_list_25-7
}

.lst-kix_list_28-1 > li:before {
  content: "o  "
}

ol.lst-kix_list_19-6 {
  list-style-type: none
}

.lst-kix_list_35-2 > li:before {
  content: "" counter(lst-ctn-kix_list_35-2, lower-roman) ". "
}

ol.lst-kix_list_19-7 {
  list-style-type: none
}

ol.lst-kix_list_19-8 {
  list-style-type: none
}

.lst-kix_list_30-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_30-3, lower-roman) ") "
}

ol.lst-kix_list_19-2 {
  list-style-type: none
}

ol.lst-kix_list_34-0.start {
  counter-reset: lst-ctn-kix_list_34-0 0
}

.lst-kix_list_26-8 > li {
  counter-increment: lst-ctn-kix_list_26-8
}

ol.lst-kix_list_19-3 {
  list-style-type: none
}

ol.lst-kix_list_19-4 {
  list-style-type: none
}

.lst-kix_list_30-8 > li:before {
  content: "(" counter(lst-ctn-kix_list_30-8, lower-roman) ") "
}

ol.lst-kix_list_19-5 {
  list-style-type: none
}

.lst-kix_list_35-7 > li:before {
  content: "" counter(lst-ctn-kix_list_35-7, lower-latin) ". "
}

.lst-kix_list_30-5 > li {
  counter-increment: lst-ctn-kix_list_30-5
}

ol.lst-kix_list_19-0 {
  list-style-type: none
}

ol.lst-kix_list_19-1 {
  list-style-type: none
}

ol.lst-kix_list_7-7.start {
  counter-reset: lst-ctn-kix_list_7-7 0
}

.lst-kix_list_3-1 > li:before {
  content: "o  "
}

.lst-kix_list_26-6 > li:before {
  content: "" counter(lst-ctn-kix_list_26-6, lower-roman) ". "
}

.lst-kix_list_14-0 > li {
  counter-increment: lst-ctn-kix_list_14-0
}

ol.lst-kix_list_17-4.start {
  counter-reset: lst-ctn-kix_list_17-4 0
}

.lst-kix_list_33-6 > li {
  counter-increment: lst-ctn-kix_list_33-6
}

.lst-kix_list_8-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_8-2, lower-latin) ") "
}

ol.lst-kix_list_31-6.start {
  counter-reset: lst-ctn-kix_list_31-6 0
}

.lst-kix_list_12-0 > li {
  counter-increment: lst-ctn-kix_list_12-0
}

ol.lst-kix_list_12-3.start {
  counter-reset: lst-ctn-kix_list_12-3 0
}

.lst-kix_list_21-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_21-2, lower-latin) ") "
}

.lst-kix_list_8-5 > li:before {
  content: "" counter(lst-ctn-kix_list_8-5, lower-latin) ". "
}

.lst-kix_list_15-1 > li {
  counter-increment: lst-ctn-kix_list_15-1
}

.lst-kix_list_26-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_26-3, lower-roman) ") "
}

.lst-kix_list_3-6 > li:before {
  content: "\0025cf   "
}

.lst-kix_list_21-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_21-7, lower-latin) ") "
}

ol.lst-kix_list_5-0.start {
  counter-reset: lst-ctn-kix_list_5-0 0
}

.lst-kix_list_11-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_11-2, lower-latin) ") "
}

ol.lst-kix_list_31-7.start {
  counter-reset: lst-ctn-kix_list_31-7 0
}

ol.lst-kix_list_12-4.start {
  counter-reset: lst-ctn-kix_list_12-4 0
}

.lst-kix_list_16-6 > li:before {
  content: "" counter(lst-ctn-kix_list_16-6, lower-roman) ". "
}

ol.lst-kix_list_10-1.start {
  counter-reset: lst-ctn-kix_list_10-1 0
}

.lst-kix_list_35-2 > li {
  counter-increment: lst-ctn-kix_list_35-2
}

.lst-kix_list_25-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_25-2, lower-latin) ") "
}

.lst-kix_list_18-2 > li {
  counter-increment: lst-ctn-kix_list_18-2
}

.lst-kix_list_29-5 > li {
  counter-increment: lst-ctn-kix_list_29-5
}

ol.lst-kix_list_5-6.start {
  counter-reset: lst-ctn-kix_list_5-6 0
}

.lst-kix_list_22-6 > li {
  counter-increment: lst-ctn-kix_list_22-6
}

.lst-kix_list_16-1 > li:before {
  content: "" counter(lst-ctn-kix_list_16-0, decimal) "." counter(lst-ctn-kix_list_16-1, decimal) " "
}

.lst-kix_list_7-3 > li {
  counter-increment: lst-ctn-kix_list_7-3
}

.lst-kix_list_25-0 > li {
  counter-increment: lst-ctn-kix_list_25-0
}

.lst-kix_list_19-3 > li {
  counter-increment: lst-ctn-kix_list_19-3
}

ol.lst-kix_list_7-8.start {
  counter-reset: lst-ctn-kix_list_7-8 0
}

.lst-kix_list_12-4 > li {
  counter-increment: lst-ctn-kix_list_12-4
}

.lst-kix_list_23-7 > li {
  counter-increment: lst-ctn-kix_list_23-7
}

ol.lst-kix_list_10-2.start {
  counter-reset: lst-ctn-kix_list_10-2 0
}

.lst-kix_list_12-7 > li {
  counter-increment: lst-ctn-kix_list_12-7
}

.lst-kix_list_34-7 > li {
  counter-increment: lst-ctn-kix_list_34-7
}

.lst-kix_list_17-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_17-2, lower-latin) ") "
}

ol.lst-kix_list_5-5.start {
  counter-reset: lst-ctn-kix_list_5-5 0
}

.lst-kix_list_30-0 > li:before {
  content: "" counter(lst-ctn-kix_list_30-0, decimal) ". "
}

ol.lst-kix_list_17-3.start {
  counter-reset: lst-ctn-kix_list_17-3 0
}

.lst-kix_list_17-5 > li:before {
  content: "" counter(lst-ctn-kix_list_17-5, lower-latin) ". "
}

.lst-kix_list_6-2 > li {
  counter-increment: lst-ctn-kix_list_6-2
}

.lst-kix_list_27-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_27-2, lower-latin) ") "
}

.lst-kix_list_22-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_22-3, lower-roman) ") "
}

.lst-kix_list_7-1 > li:before {
  content: "" counter(lst-ctn-kix_list_7-1, decimal) ". "
}

.lst-kix_list_13-5 > li {
  counter-increment: lst-ctn-kix_list_13-5
}

.lst-kix_list_9-6 > li {
  counter-increment: lst-ctn-kix_list_9-6
}

.lst-kix_list_29-2 > li {
  counter-increment: lst-ctn-kix_list_29-2
}

ol.lst-kix_list_23-3.start {
  counter-reset: lst-ctn-kix_list_23-3 0
}

ol.lst-kix_list_5-4.start {
  counter-reset: lst-ctn-kix_list_5-4 0
}

ol.lst-kix_list_5-1.start {
  counter-reset: lst-ctn-kix_list_5-1 0
}

.lst-kix_list_20-3 > li {
  counter-increment: lst-ctn-kix_list_20-3
}

.lst-kix_list_25-3 > li {
  counter-increment: lst-ctn-kix_list_25-3
}

.lst-kix_list_16-6 > li {
  counter-increment: lst-ctn-kix_list_16-6
}

.lst-kix_list_11-6 > li {
  counter-increment: lst-ctn-kix_list_11-6
}

.lst-kix_list_31-7 > li:before {
  content: "" counter(lst-ctn-kix_list_31-7, lower-latin) ") "
}

ol.lst-kix_list_10-0.start {
  counter-reset: lst-ctn-kix_list_10-0 0
}

ol.lst-kix_list_17-8.start {
  counter-reset: lst-ctn-kix_list_17-8 0
}

ol.lst-kix_list_34-1.start {
  counter-reset: lst-ctn-kix_list_34-1 0
}

ol.lst-kix_list_17-5.start {
  counter-reset: lst-ctn-kix_list_17-5 0
}

.lst-kix_list_4-2 > li:before {
  content: "\0025aa   "
}

ol.lst-kix_list_23-6.start {
  counter-reset: lst-ctn-kix_list_23-6 0
}

.lst-kix_list_17-4 > li {
  counter-increment: lst-ctn-kix_list_17-4
}

.lst-kix_list_15-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_15-2, lower-latin) ") "
}

.lst-kix_list_10-8 > li {
  counter-increment: lst-ctn-kix_list_10-8
}

.lst-kix_list_26-1 > li {
  counter-increment: lst-ctn-kix_list_26-1
}

.lst-kix_list_10-6 > li:before {
  content: "" counter(lst-ctn-kix_list_10-6, lower-roman) ". "
}

.lst-kix_list_9-1 > li:before {
  content: "" counter(lst-ctn-kix_list_9-0, decimal) "." counter(lst-ctn-kix_list_9-1, decimal) " "
}

ol.lst-kix_list_12-7.start {
  counter-reset: lst-ctn-kix_list_12-7 0
}

.lst-kix_list_15-8 > li {
  counter-increment: lst-ctn-kix_list_15-8
}

.lst-kix_list_31-3 > li {
  counter-increment: lst-ctn-kix_list_31-3
}

ol.lst-kix_list_12-8.start {
  counter-reset: lst-ctn-kix_list_12-8 0
}

.lst-kix_list_20-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_20-3, lower-roman) ") "
}

.lst-kix_list_27-6 > li {
  counter-increment: lst-ctn-kix_list_27-6
}

.lst-kix_list_29-2 > li:before {
  content: "" counter(lst-ctn-kix_list_29-2, lower-roman) ". "
}

ol.lst-kix_list_23-5.start {
  counter-reset: lst-ctn-kix_list_23-5 0
}

.lst-kix_list_21-1 > li {
  counter-increment: lst-ctn-kix_list_21-1
}

.lst-kix_list_10-1 > li {
  counter-increment: lst-ctn-kix_list_10-1
}

.lst-kix_list_8-8 > li {
  counter-increment: lst-ctn-kix_list_8-8
}

ol.lst-kix_list_17-6.start {
  counter-reset: lst-ctn-kix_list_17-6 0
}

.lst-kix_list_28-6 > li:before {
  content: "\0025cf   "
}

.lst-kix_list_1-6 > li:before {
  content: "\0025cf   "
}

.lst-kix_list_33-7 > li:before {
  content: "(" counter(lst-ctn-kix_list_33-7, lower-latin) ") "
}

.lst-kix_list_12-6 > li:before {
  content: "" counter(lst-ctn-kix_list_12-6, lower-roman) ". "
}

ol.lst-kix_list_23-4.start {
  counter-reset: lst-ctn-kix_list_23-4 0
}

.lst-kix_list_34-3 > li:before {
  content: "(" counter(lst-ctn-kix_list_34-3, lower-roman) ") "
}

.lst-kix_list_2-2 > li:before {
  content: "\0025aa   "
}

.lst-kix_list_13-2 > li:before {
  content: "(" counter(lst-ctn-kix_list_13-2, lower-latin) ") "
}

ol.lst-kix_list_5-2.start {
  counter-reset: lst-ctn-kix_list_5-2 0
}


.c8 {
  margin-left: 0;
  padding-top: 0;
  list-style-position: inside;
  text-indent: 54px;
  padding-bottom: 18px;
  orphans: 2;
  widows: 2;
  text-align: justify
}

.c7 {
  margin-left: 8px;
  padding-top: 0;
  list-style-position: inside;
  text-indent: 108px;
  padding-bottom: 18px;
  orphans: 2;
  widows: 2;
  text-align: justify
}

.c9 {
  padding-top: 0;
  padding-bottom: 0;
  orphans: 2;
  widows: 2;
  text-align: left;
  height: 16px
}

.c5 {
  -webkit-text-decoration-skip: none;
  text-decoration: underline;
  vertical-align: baseline;
  text-decoration-skip-ink: none;
  font-size: 16px;
  font-style: normal
}

.c17 {
  margin-left: 60px;
  padding-top: 0;
  padding-bottom: 0;
  orphans: 2;
  widows: 2;
  text-align: left
}

.c11 {
  -webkit-text-decoration-skip: none;
  text-decoration: underline;
  vertical-align: baseline;
  text-decoration-skip-ink: none;
  font-size: 16px;
  font-style: italic
}

.c0 {
  font-weight: 400;
  text-decoration: none;
  vertical-align: baseline;
  font-size: 16px;
  font-style: normal
}

.c1 {
  padding-top: 0;
  padding-bottom: 0;
  orphans: 2;
  widows: 2;
  text-align: justify;
  height: 16px
}

.c21 {
  padding-top: 0;
  padding-bottom: 0;
  orphans: 2;
  widows: 2;
  text-align: left
}

.c10 {
  padding-top: 0;
  padding-bottom: 18px;
  orphans: 2;
  widows: 2;
  text-align: justify
}

.c19 {
  padding-top: 0;
  padding-bottom: 0;
  orphans: 2;
  widows: 2;
  text-align: justify
}

.c18 {
  text-decoration: none;
  vertical-align: baseline;
  font-size: 16px;
  font-style: normal
}

.c20 {
  font-weight: 400;
  text-decoration: none;
  vertical-align: baseline;
  font-size: 16px;
  font-style: italic
}

.c13 {
  margin-left: 24px;
  padding-left: 24px
}

.c6 {
  padding: 0;
  margin: 0
}

.c14 {
  color: inherit;
  text-decoration: inherit
}



