#law-root {
    --law-panel-color: #12446b;
    --law-trigger-color: #1f78bc;
    --law-trigger-icon-color: #ffffff;
    --law-trigger-radius: 50%;
    --law-trigger-size: 58px;
    --law-offset-x: 20px;
    --law-offset-y: 20px;
    --law-mobile-trigger-size: 58px;
    --law-mobile-offset-x: 10px;
    --law-mobile-offset-y: 10px;
    --law-mobile-trigger-radius: 50%;
    color-scheme: light;
    font-family: Arial, Helvetica, sans-serif;
    position: fixed;
    z-index: 2147483000;
}

#law-root,
#law-root * {
    box-sizing: border-box;
}

#law-root.law-position-right {
    bottom: var(--law-offset-y);
    right: var(--law-offset-x);
}

#law-root.law-position-left {
    bottom: var(--law-offset-y);
    left: var(--law-offset-x);
}

#law-root .law-trigger {
    align-items: center;
    appearance: none;
    background: var(--law-trigger-color);
    border: 0;
    border-radius: var(--law-trigger-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
    color: var(--law-trigger-icon-color);
    cursor: pointer;
    display: inline-flex;
    height: var(--law-trigger-size);
    justify-content: center;
    padding: 0;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    width: var(--law-trigger-size);
}

#law-root .law-trigger:hover {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

#law-root .law-trigger svg {
    display: block;
    fill: currentColor;
    height: 58%;
    width: 58%;
}

#law-root .law-trigger:focus-visible,
#law-root button:focus-visible,
#law-root select:focus-visible {
    outline: 3px solid #ffbf47;
    outline-offset: 3px;
}

#law-root .law-panel {
    background: #ffffff;
    border: 1px solid rgba(17, 24, 39, 0.14);
    border-radius: 8px;
    bottom: calc(var(--law-trigger-size) + 14px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
    color: #1f2937;
    max-height: min(760px, calc(100vh - 110px));
    overflow: hidden;
    position: absolute;
    width: min(660px, calc(100vw - 32px));
}

#law-root.law-position-right .law-panel {
    right: 0;
}

#law-root.law-position-left .law-panel {
    left: 0;
}

#law-root .law-panel[hidden],
#law-root .law-section[hidden],
.law-reading-guide[hidden],
.law-reading-mask[hidden],
.law-big-cursor[hidden],
.law-text-magnifier[hidden] {
    display: none !important;
}

#law-root .law-header {
    align-items: center;
    background: var(--law-panel-color);
    color: #ffffff;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 16px;
}

#law-root .law-header h2 {
    color: inherit;
    font-family: inherit;
    font-size: 19px;
    line-height: 1.25;
    margin: 0;
}

#law-root .law-close {
    appearance: none;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 6px;
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    line-height: 1;
    padding: 8px 10px;
}

#law-root .law-tabs {
    background: #f2f5f8;
    border-bottom: 1px solid #dfe5ec;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

#law-root .law-tab {
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    color: #344054;
    cursor: pointer;
    font: 700 14px/1.2 Arial, Helvetica, sans-serif;
    min-height: 48px;
    padding: 10px 8px;
}

#law-root .law-tab[aria-selected="true"] {
    background: #ffffff;
    border-bottom-color: var(--law-panel-color);
    color: var(--law-panel-color);
}

#law-root .law-body {
    max-height: min(580px, calc(100vh - 245px));
    overflow: auto;
    padding: 14px;
}

#law-root .law-section h3 {
    color: #1f2937;
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 14px;
}

#law-root .law-profile-list {
    display: grid;
    gap: 10px;
}

#law-root .law-profile {
    align-items: center;
    appearance: none;
    background: #f2f5f8;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    min-height: 76px;
    padding: 12px;
    text-align: left;
}

#law-root .law-profile[aria-pressed="true"] {
    background: color-mix(in srgb, var(--law-panel-color) 10%, #ffffff);
    border-color: var(--law-panel-color);
    box-shadow: inset 4px 0 0 var(--law-panel-color);
}

#law-root .law-profile-copy {
    display: grid;
    gap: 4px;
}

#law-root .law-profile-copy strong {
    font-size: 15px;
    line-height: 1.25;
}

#law-root .law-profile-copy span {
    color: #4b5563;
    font-size: 13px;
    line-height: 1.3;
}

#law-root .law-switch {
    background: #e5eaf0;
    border-radius: 999px;
    display: grid;
    flex: 0 0 auto;
    gap: 2px;
    grid-template-columns: 1fr 1fr;
    padding: 3px;
    width: 76px;
}

#law-root .law-switch span {
    border-radius: 999px;
    color: #4b5563;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    padding: 7px 0;
    text-align: center;
}

#law-root .law-profile[aria-pressed="false"] .law-switch span:first-child,
#law-root .law-profile[aria-pressed="true"] .law-switch span:last-child {
    background: #ffffff;
    color: var(--law-panel-color);
}

#law-root .law-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 14px;
}

#law-root .law-card,
#law-root .law-stepper,
#law-root .law-color-row {
    background: #f2f5f8;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #1f2937;
}

#law-root .law-card {
    align-items: center;
    appearance: none;
    cursor: pointer;
    display: grid;
    font: 700 15px/1.2 Arial, Helvetica, sans-serif;
    gap: 10px;
    justify-items: center;
    min-height: 118px;
    padding: 14px 10px;
    text-align: center;
}

#law-root .law-card[aria-pressed="true"] {
    background: #ffffff;
    border-color: #2f6df6;
    box-shadow: inset 0 0 0 2px #2f6df6;
}

#law-root .law-card-icon {
    color: #2b3441;
    display: inline-flex;
    height: 28px;
    justify-content: center;
    width: 28px;
}

#law-root .law-card-icon svg {
    fill: currentColor;
    height: 28px;
    width: 28px;
}

#law-root .law-card-label {
    max-width: 150px;
}

#law-root .law-wide {
    grid-column: 1 / -1;
}

#law-root .law-stepper {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px;
}

#law-root .law-stepper-title {
    align-items: center;
    display: flex;
    gap: 10px;
}

#law-root .law-stepper-title strong {
    font-size: 15px;
}

#law-root .law-stepper-controls {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 42px 1fr 42px;
}

#law-root .law-small-button {
    appearance: none;
    background: #2f6df6;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    font: 800 22px/1 Arial, Helvetica, sans-serif;
    height: 42px;
    padding: 0;
    width: 42px;
}

#law-root .law-stepper-value {
    background: #ffffff;
    border-radius: 999px;
    color: #2f6df6;
    font-size: 14px;
    font-weight: 800;
    min-height: 42px;
    padding: 12px 10px;
    text-align: center;
}

#law-root .law-color-row {
    align-items: center;
    display: grid;
    gap: 10px;
    justify-items: center;
    margin-bottom: 14px;
    padding: 18px 14px;
}

#law-root .law-color-row strong {
    font-size: 18px;
    line-height: 1.25;
    text-align: center;
}

#law-root .law-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

#law-root .law-swatch {
    appearance: none;
    border: 2px solid rgba(17, 24, 39, 0.08);
    border-radius: 999px;
    cursor: pointer;
    height: 30px;
    padding: 0;
    width: 30px;
}

#law-root .law-swatch[aria-pressed="true"] {
    border-color: #2f6df6;
    box-shadow: 0 0 0 3px rgba(47, 109, 246, 0.22);
}

#law-root .law-color-clear {
    appearance: none;
    background: transparent;
    border: 0;
    color: #1f2937;
    cursor: pointer;
    font: 700 14px/1.2 Arial, Helvetica, sans-serif;
    padding: 4px;
}

#law-root .law-useful {
    display: grid;
    grid-template-columns: 28px 1fr;
    margin-bottom: 14px;
    padding: 16px 20px;
}

#law-root .law-useful label {
    font-size: 18px;
    font-weight: 800;
}

#law-root .law-useful select {
    appearance: auto;
    background: #ffffff;
    border: 1px solid #d7deea;
    border-radius: 999px;
    color: #1f2937;
    font: 400 15px/1.2 Arial, Helvetica, sans-serif;
    grid-column: 1 / -1;
    min-height: 48px;
    padding: 0 16px;
    width: 100%;
}

#law-root .law-reset-row {
    border-top: 1px solid #e5e7eb;
    padding: 12px 14px;
}

#law-root .law-reset {
    appearance: none;
    background: #f3f4f6;
    border: 1px solid #d6dae2;
    border-radius: 8px;
    color: #111827;
    cursor: pointer;
    font: 800 15px/1.2 Arial, Helvetica, sans-serif;
    min-height: 44px;
    padding: 12px;
    width: 100%;
}

#law-root .law-footer {
    border-top: 1px solid #e5e7eb;
    color: #4b5563;
    display: grid;
    font-size: 13px;
    gap: 6px;
    padding: 12px 14px;
}

#law-root .law-footer a {
    color: var(--law-panel-color);
    font-weight: 700;
}

html.law-content-scale-1 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6, td, th):not(#law-root):not(#law-root *) {
    font-size: 106% !important;
}

html.law-content-scale-2 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6, td, th):not(#law-root):not(#law-root *) {
    font-size: 112% !important;
}

html.law-content-scale-3 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6, td, th):not(#law-root):not(#law-root *) {
    font-size: 118% !important;
}

html.law-content-scale-4 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6, td, th):not(#law-root):not(#law-root *) {
    font-size: 124% !important;
}

html.law-font-scale-1 {
    font-size: 112% !important;
}

html.law-font-scale-2 {
    font-size: 124% !important;
}

html.law-font-scale-3 {
    font-size: 136% !important;
}

html.law-font-scale-4 {
    font-size: 148% !important;
}

html.law-line-height-1 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    line-height: 1.55 !important;
}

html.law-line-height-2 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    line-height: 1.75 !important;
}

html.law-line-height-3 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    line-height: 1.95 !important;
}

html.law-line-height-4 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    line-height: 2.15 !important;
}

html.law-letter-spacing-1 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    letter-spacing: 0.04em !important;
}

html.law-letter-spacing-2 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    letter-spacing: 0.08em !important;
}

html.law-letter-spacing-3 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    letter-spacing: 0.12em !important;
}

html.law-letter-spacing-4 body :where(p, li, a, span, button, input, textarea, label, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    letter-spacing: 0.16em !important;
}

html.law-readable-font body :where(*):not(#law-root):not(#law-root *),
html.law-profile-cognitive body :where(*):not(#law-root):not(#law-root *),
html.law-profile-elderly body :where(*):not(#law-root):not(#law-root *) {
    font-family: Arial, Verdana, Tahoma, sans-serif !important;
}

html.law-highlight-links body :where(a):not(#law-root):not(#law-root *),
html.law-profile-keyboardNav body :where(a):not(#law-root):not(#law-root *) {
    outline: 2px solid #ffbf47 !important;
    outline-offset: 2px !important;
    text-decoration: underline !important;
    text-decoration-thickness: 0.14em !important;
    text-underline-offset: 0.18em !important;
}

html.law-highlight-titles body :where(h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *),
html.law-profile-cognitive body :where(h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    background: #fff3bf !important;
    color: #111827 !important;
    outline: 2px solid #f59e0b !important;
    outline-offset: 3px !important;
}

html.law-align-left body :where(p, li, div, section, article, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    text-align: left !important;
}

html.law-align-center body :where(p, li, div, section, article, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    text-align: center !important;
}

html.law-align-right body :where(p, li, div, section, article, h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    text-align: right !important;
}

html.law-dark-contrast body,
html.law-high-contrast body {
    background: #000000 !important;
}

html.law-dark-contrast body :where(*):not(#law-root):not(#law-root *),
html.law-high-contrast body :where(*):not(#law-root):not(#law-root *) {
    background-color: #000000 !important;
    border-color: #ffffff !important;
    box-shadow: none !important;
    color: #ffffff !important;
    text-shadow: none !important;
}

html.law-high-contrast body :where(a, button, input, textarea, select):not(#law-root):not(#law-root *) {
    color: #fff176 !important;
}

html.law-light-contrast body {
    background: #ffffff !important;
}

html.law-light-contrast body :where(*):not(#law-root):not(#law-root *) {
    background-color: #ffffff !important;
    border-color: #111827 !important;
    color: #111827 !important;
    text-shadow: none !important;
}

html.law-high-saturation body :where(*):not(#law-root):not(#law-root *) {
    filter: saturate(1.8) !important;
}

html.law-low-saturation body :where(*):not(#law-root):not(#law-root *),
html.law-profile-seizureSafe body :where(*):not(#law-root):not(#law-root *) {
    filter: saturate(0.45) !important;
}

html.law-monochrome body :where(*):not(#law-root):not(#law-root *) {
    filter: grayscale(1) !important;
}

html.law-custom-text-color body :where(p, li, a, span, button, input, textarea, label, td, th):not(#law-root):not(#law-root *) {
    color: var(--law-user-text-color) !important;
}

html.law-custom-title-color body :where(h1, h2, h3, h4, h5, h6):not(#law-root):not(#law-root *) {
    color: var(--law-user-title-color) !important;
}

html.law-custom-bg-color body,
html.law-custom-bg-color body :where(main, section, article, aside, header, footer, nav, div):not(#law-root):not(#law-root *) {
    background-color: var(--law-user-bg-color) !important;
}

html.law-hide-images body :where(img, picture, video, canvas, svg):not(#law-root):not(#law-root *) {
    opacity: 0 !important;
    visibility: hidden !important;
}

html.law-pause-animations body :where(*):not(#law-root):not(#law-root *),
html.law-profile-seizureSafe body :where(*):not(#law-root):not(#law-root *) {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
}

html.law-reading-mode-active body :where(main, article, [role="main"], #content):not(#law-root):not(#law-root *) {
    background: #ffffff !important;
    color: #111827 !important;
    font-size: 112% !important;
    line-height: 1.75 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 820px !important;
}

html.law-highlight-focus body :where(a, button, input, textarea, select, [tabindex]):not(#law-root):not(#law-root *):focus,
html.law-profile-keyboardNav body :where(a, button, input, textarea, select, [tabindex]):not(#law-root):not(#law-root *):focus,
html.law-profile-screenReader body :where(a, button, input, textarea, select, [tabindex]):not(#law-root):not(#law-root *):focus {
    outline: 4px solid #ffbf47 !important;
    outline-offset: 4px !important;
}

html.law-profile-visuallyImpaired {
    font-size: 122% !important;
}

html.law-profile-visuallyImpaired body :where(a, button, input, textarea, select):not(#law-root):not(#law-root *),
html.law-profile-elderly body :where(a, button, input, textarea, select):not(#law-root):not(#law-root *) {
    min-height: 42px !important;
}

html.law-profile-adhdFriendly body :where(main, article, [role="main"]):not(#law-root):not(#law-root *) {
    outline: 4px solid rgba(47, 109, 246, 0.38) !important;
    outline-offset: 8px !important;
}

.law-hover-target {
    outline: 3px solid #2f6df6 !important;
    outline-offset: 3px !important;
}

.law-reading-guide {
    background: rgba(255, 224, 102, 0.38);
    border-bottom: 2px solid rgba(183, 121, 31, 0.58);
    border-top: 2px solid rgba(183, 121, 31, 0.58);
    height: 34px;
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: -17px;
    z-index: 2147482996;
}

.law-reading-mask {
    background: rgba(0, 0, 0, 0.58);
    left: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    z-index: 2147482995;
}

.law-reading-mask-top {
    top: 0;
}

.law-reading-mask-bottom {
    bottom: 0;
}

.law-big-cursor {
    border-radius: 999px;
    height: 34px;
    left: -17px;
    pointer-events: none;
    position: fixed;
    top: -17px;
    width: 34px;
    z-index: 2147482997;
}

.law-big-cursor-is-black {
    background: #000000;
    border: 3px solid #ffffff;
}

.law-big-cursor-is-white {
    background: #ffffff;
    border: 3px solid #000000;
}

html.law-big-cursor-black body,
html.law-big-cursor-black body :where(*):not(#law-root):not(#law-root *),
html.law-big-cursor-white body,
html.law-big-cursor-white body :where(*):not(#law-root):not(#law-root *) {
    cursor: none !important;
}

.law-text-magnifier {
    background: #111827;
    border: 3px solid #ffbf47;
    border-radius: 8px;
    color: #ffffff;
    font: 700 20px/1.35 Arial, Helvetica, sans-serif;
    max-width: 320px;
    padding: 14px;
    pointer-events: none;
    position: fixed;
    z-index: 2147482998;
}

.law-sr-status {
    height: 1px;
    left: -9999px;
    overflow: hidden;
    position: absolute;
    top: auto;
    width: 1px;
}

@media (max-width: 640px) {
    #law-root {
        bottom: var(--law-mobile-offset-y);
    }

    #law-root.law-position-right {
        left: auto;
        right: var(--law-mobile-offset-x);
    }

    #law-root.law-position-left {
        left: var(--law-mobile-offset-x);
        right: auto;
    }

    #law-root.law-mobile-right {
        left: auto;
        right: var(--law-mobile-offset-x);
    }

    #law-root.law-mobile-left {
        left: var(--law-mobile-offset-x);
        right: auto;
    }

    #law-root .law-trigger {
        border-radius: var(--law-mobile-trigger-radius);
        height: var(--law-mobile-trigger-size);
        width: var(--law-mobile-trigger-size);
    }

    #law-root .law-panel {
        bottom: calc(var(--law-mobile-trigger-size) + 12px);
        max-height: calc(100vh - 96px);
        width: min(390px, calc(100vw - 20px));
    }

    #law-root .law-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    #law-root .law-body {
        max-height: calc(100vh - 255px);
    }

    #law-root .law-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #law-root .law-card {
        min-height: 108px;
    }

    #law-root.law-hide-mobile {
        display: none;
    }
}
