
    @-webkit-keyframes snowflakes-fall {
        0% {
            top: -10%;
        }
        100% {
            top: 100%;
        }
    }

    @-webkit-keyframes snowflakes-shake {
        0%, 100% {
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
        50% {
            -webkit-transform: translateX(80px);
            transform: translateX(80px);
        }
    }

    @keyframes snowflakes-fall {
        0% {
            top: -10%;
        }
        100% {
            top: 100%;
        }
    }

    @keyframes snowflakes-shake {
        0%, 100% {
            transform: translateX(0);
        }
        50% {
            transform: translateX(80px);
        }
    }

    .snowflake {
        position: fixed;
        top: -10%;
        z-index: 9999;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        cursor: default;
        -webkit-animation-name: snowflakes-fall, snowflakes-shake;
        -webkit-animation-duration: 10s, 3s;
        -webkit-animation-timing-function: linear, ease-in-out;
        -webkit-animation-iteration-count: infinite, infinite;
        -webkit-animation-play-state: running, running;
        animation-name: snowflakes-fall, snowflakes-shake;
        animation-duration: 10s, 3s;
        animation-timing-function: linear, ease-in-out;
        animation-iteration-count: infinite, infinite;
        animation-play-state: running, running;
    }

    .snowflake:nth-of-type(0) {
        left: 1%;
        -webkit-animation-delay: 0s, 0s;
        animation-delay: 0s, 0s;
    }

    .snowflake:nth-of-type(1) {
        left: 10%;
        -webkit-animation-delay: 1s, 1s;
        animation-delay: 1s, 1s;
    }

    .snowflake:nth-of-type(2) {
        left: 20%;
        -webkit-animation-delay: 6s, 0.5s;
        animation-delay: 6s, 0.5s;
    }

    .snowflake:nth-of-type(3) {
        left: 30%;
        -webkit-animation-delay: 4s, 2s;
        animation-delay: 4s, 2s;
    }

    .snowflake:nth-of-type(4) {
        left: 40%;
        -webkit-animation-delay: 2s, 2s;
        animation-delay: 2s, 2s;
    }

    .snowflake:nth-of-type(5) {
        left: 50%;
        -webkit-animation-delay: 8s, 3s;
        animation-delay: 8s, 3s;
    }

    .snowflake:nth-of-type(6) {
        left: 60%;
        -webkit-animation-delay: 6s, 2s;
        animation-delay: 6s, 2s;
    }

    .snowflake:nth-of-type(7) {
        left: 70%;
        -webkit-animation-delay: 2.5s, 1s;
        animation-delay: 2.5s, 1s;
    }

    .snowflake:nth-of-type(8) {
        left: 80%;
        -webkit-animation-delay: 1s, 0s;
        animation-delay: 1s, 0s;
    }

    .snowflake:nth-of-type(9) {
        left: 90%;
        -webkit-animation-delay: 3s, 1.5s;
        animation-delay: 3s, 1.5s;
    }

    .snowflake:nth-of-type(10) {
        left: 25%;
        -webkit-animation-delay: 2s, 0s;
        animation-delay: 2s, 0s;
    }

    .snowflake:nth-of-type(11) {
        left: 65%;
        -webkit-animation-delay: 4s, 2.5s;
        animation-delay: 4s, 2.5s;
    }


            html,
            body,
            div,
            span,
            applet,
            object,
            iframe,
            h1,
            h2,
            h3,
            h4,
            h5,
            h6,
            p,
            blockquote,
            pre,
            a,
            abbr,
            acronym,
            address,
            big,
            cite,
            code,
            del,
            dfn,
            em,
            img,
            ins,
            kbd,
            q,
            s,
            samp,
            small,
            strike,
            strong,
            sub,
            sup,
            tt,
            var,
            b,
            u,
            i,
            center,
            dl,
            dt,
            dd,
            ol,
            ul,
            li,
            fieldset,
            form,
            label,
            legend,
            table,
            caption,
            tbody,
            tfoot,
            thead,
            tr,
            th,
            td,
            article,
            aside,
            canvas,
            details,
            embed,
            figure,
            figcaption,
            footer,
            header,
            hgroup,
            menu,
            nav,
            output,
            ruby,
            section,
            summary,
            time,
            mark,
            audio,
            video {
                margin: 0;
                padding: 0;
                border: 0;
                font-size: 100%;
                font: inherit;
                vertical-align: baseline;
            }
            article,
            aside,
            details,
            figcaption,
            figure,
            footer,
            header,
            hgroup,
            menu,
            nav,
            section {
                display: block;
            }
            a:hover img { filter:Alpha(Opacity=90);
            }
            body { cursor:crosshair;
            }
            a:hover { cursor:crosshair;
            }
            ol,
            ul {
                list-style: none;
            }
            blockquote,
            q {
                quotes: none;
            }
            blockquote:before,
            blockquote:after,
            q:before,
            q:after {
                content: "";
                content: none;
            }
            table {
                border-collapse: collapse;
                border-spacing: 0;
            }
            body {
                -webkit-text-size-adjust: none;
            }
            mark {
                background-color: transparent;
                color: inherit;
            }
            input::-moz-focus-inner {
                border: 0;
                padding: 0;
            }
            input[type="text"],
            input[type="email"],
            select,
            textarea {
                -moz-appearance: none;
                -webkit-appearance: none;
                -ms-appearance: none;
                appearance: none;
            }
            *,
            *:before,
            *:after {
                box-sizing: border-box;
            }
            body {
                line-height: 1;
                min-height: var(--viewport-height);
                min-width: 320px;
                overflow-x: hidden;
                word-wrap: break-word;
            }
            body:before {
                content: "";
                display: block;
                background-attachment: scroll;
                height: var(--background-height);
                left: 0;
                pointer-events: none;
                position: fixed;
                top: 0;
                transform: scale(1);
                width: 100vw;
                z-index: 0;
                background-image: linear-gradient(0deg, #ffffff 0%, transparent 100%), url("daisy tile.png");
                background-position: 0% 0%, center;
                background-repeat: repeat, repeat;
                background-size: cover, auto;
                background-color: #ffffff;
            }
            :root {
                --background-height: 100vh;
                --site-language-alignment: left;
                --site-language-direction: ltr;
                --site-language-flex-alignment: flex-start;
                --site-language-indent-left: 1;
                --site-language-indent-right: 0;
                --site-language-margin-left: 0;
                --site-language-margin-right: auto;
                --viewport-height: 100vh;
            }
            html {
                font-size: 14pt;
            }
            u {
                text-decoration: underline;
            }
            strong {
                color: inherit;
                font-weight: bolder;
            }
            em {
                font-style: italic;
            }
            code {
                background-color: rgba(144, 144, 144, 0.25);
                border-radius: 0.25em;
                font-family: "Lucida Console", "Courier New", monospace;
                font-size: 0.9em;
                font-weight: normal;
                letter-spacing: 0;
                margin: 0 0.25em;
                padding: 0.25em 0.5em;
                text-indent: 0;
            }
            mark {
                background-color: rgba(144, 144, 144, 0.25);
            }
            spoiler-text {
                -webkit-text-stroke: 0;
                background-color: rgba(32, 32, 32, 0.75);
                text-shadow: none;
                text-stroke: 0;
                color: transparent;
                cursor: pointer;
                transition: color 0.1s ease-in-out;
            }
            spoiler-text.active {
                color: #ffffff;
                cursor: text;
            }
            s {
                text-decoration: line-through;
            }
            sub {
                font-size: smaller;
                vertical-align: sub;
            }
            sup {
                font-size: smaller;
                vertical-align: super;
            }
            a {
                color: inherit;
                text-decoration: underline;
                transition: none;
            }
            a[onclick]:not([href]) {
                cursor: pointer;
            }
            unloaded-script {
                display: none;
            }
            #wrapper {
                -webkit-overflow-scrolling: touch;
                align-items: center;
                display: flex;
                flex-direction: column;
                justify-content: center;
                min-height: var(--viewport-height);
                overflow: hidden;
                position: relative;
                z-index: 2;
                padding: 1rem 1rem 1rem 1rem;
            }
            #main {
                --alignment: center;
                --flex-alignment: center;
                --indent-left: 1;
                --indent-right: 1;
                --margin-left: auto;
                --margin-right: auto;
                --border-radius-tl: 0.75rem;
                --border-radius-tr: 0.75rem;
                --border-radius-br: 0.75rem;
                --border-radius-bl: 0.75rem;
                align-items: center;
                display: flex;
                flex-grow: 0;
                flex-shrink: 0;
                justify-content: center;
                max-width: 100%;
                position: relative;
                text-align: var(--alignment);
                z-index: 1;
                background-image: linear-gradient(180deg, #fffefc 48%, #fce4cc 100%);
                background-position: 0% 0%;
                background-repeat: repeat;
                background-size: cover;
                box-shadow: 0.258rem 0.429rem 0.75rem 0rem rgba(54, 19, 0, 0.212);
                border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
                transition: opacity 1s ease 0s, transform 1s ease 0s;
            }
            #main > .inner {
                --padding-horizontal: 0rem;
                --padding-vertical: 0rem;
                --spacing: 0rem;
                --width: 28rem;
                border-radius: var(--border-radius-tl) var(--border-radius-tr) var(--border-radius-br) var(--border-radius-bl);
                max-width: 100%;
                position: relative;
                width: var(--width);
                z-index: 1;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }
            #main > .inner > header {
                margin-bottom: var(--spacing);
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            #main > .inner > footer {
                margin-top: var(--spacing);
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            #main > .inner > * > * {
                margin-top: var(--spacing);
                margin-bottom: var(--spacing);
            }
            #main > .inner > * > :first-child {
                margin-top: 0 !important;
            }
            #main > .inner > * > :last-child {
                margin-bottom: 0 !important;
            }
            #main > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
                width: calc(100% + calc(var(--padding-horizontal) * 2) + 0.4725px);
            }
            #main > .inner > .full:first-child {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }
            #main > .inner > .full:last-child {
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }
            #main > .inner > .full.screen {
                border-radius: 0 !important;
                max-width: 100vw;
                position: relative;
                width: 100vw;
                left: 50%;
                margin-left: -50vw;
                right: auto;
            }
            #main > .inner > * > .full {
                margin-left: calc(0rem);
                max-width: calc(100% + 0rem + 0.4725px);
                width: calc(100% + 0rem + 0.4725px);
            }
            #main > .inner > * > .full.screen {
                border-radius: 0 !important;
                max-width: 100vw;
                position: relative;
                width: 100vw;
                left: 50%;
                margin-left: -50vw;
                right: auto;
            }
            #main > .inner > header > .full:first-child {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
                margin-top: 0rem !important;
            }
            #main > .inner > footer > .full:last-child {
                margin-bottom: 0rem !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            body.is-loading #main {
                opacity: 0;
                transform: translateY(0.6375rem);
            }
            #main > .inner > header,
            #main > .inner > footer {
                transition: opacity 0.1875s ease-in-out 0.28125s, visibility 0.1875s linear 0.28125s;
            }
            #main > .inner > header.hidden,
            #main > .inner > footer.hidden {
                transition: opacity 0.1875s ease-in-out, visibility 0.1875s;
                opacity: 0;
                visibility: hidden;
            }
            #main > .inner > section {
                transition: opacity 0.375s ease-in-out 0.1875s, min-height 0.1875s ease-in-out, max-height 0.1875s ease-in-out;
            }
            #main > .inner > section.inactive {
                opacity: 0;
                transition: opacity 0.1875s ease-in-out;
            }
            body.is-instant #main,
            body.is-instant #main > .inner > *,
            body.is-instant #main > .inner > section > * {
                transition: none !important;
            }
            body.is-instant:after {
                display: none !important;
                transition: none !important;
            }
            .buttons {
                cursor: default;
                display: flex;
                justify-content: var(--flex-alignment);
                letter-spacing: 0;
                padding: 0;
            }
            .buttons li {
                max-width: 100%;
                text-align: var(--alignment);
            }
            .buttons li a {
                align-items: center;
                justify-content: center;
                max-width: 100%;
                text-align: center;
                text-decoration: none;
                vertical-align: middle;
                white-space: nowrap;
            }
            .buttons no-sound {
                cursor: default;
                display: flex;
                justify-content: var(--flex-alignment);
                letter-spacing: 0;
                padding: 0;
            }
            .buttons no-sound li {
                max-width: 100%;
                text-align: var(--alignment);
            }
            .buttons no-sound li a {
                align-items: center;
                justify-content: center;
                max-width: 100%;
                text-align: center;
                text-decoration: none;
                vertical-align: middle;
                white-space: nowrap;
            }
            #buttons01 {
                --flex-alignment: center;
                --alignment: center;
                gap: 0.875rem;
                flex-direction: row;
                flex-wrap: wrap;
            }
            #buttons01 li a {
                display: inline-flex;
                width: 5.875rem;
                height: 2.5rem;
                line-height: 2.5rem;
                padding: 0 0.5rem;
                vertical-align: middle;
                font-family: "Times New Roman", serif;
                font-size: 1em;
                font-weight: 400;
                border-radius: 1.125rem;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }
            #buttons01 li a svg {
                display: block;
                fill: #471a00;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 1em;
                margin-left: -0.125em;
                margin-right: calc(0.5em + 0rem);
                transition: fill 0.25s ease;
            }
            #buttons01 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
            }
            #buttons01 .button {
                background-color: #fffefc;
                color: #471a00;
                background-image: linear-gradient(0deg, #fff4e8 0%, rgba(255, 254, 252, 0.008) 46%);
                background-position: 0% 0%;
                background-repeat: repeat;
                background-size: cover;
            }
            #buttons01 li a:hover {
                transform: scale(1.0775);
            }
            #buttons01 .n01 svg {
                fill: #471a00;
            }
            #buttons01 .n02 svg {
                fill: #471a00;
            }
            #buttons02 {
                --flex-alignment: flex-start;
                --alignment: left;
                gap: 1.125rem;
                flex-direction: column;
                flex-wrap: nowrap;
            }
            #buttons02 li a {
                display: inline-flex;
                width: 10.5rem;
                height: 2rem;
                line-height: 2rem;
                padding: 0 1rem;
                vertical-align: middle;
                font-family: "Times New Roman", serif;
                font-size: 1em;
                font-weight: 400;
                border-radius: 1.125rem;
                justify-content: flex-start;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }
            #buttons02 li a svg {
                display: block;
                fill: #471a00;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 1em;
                margin-left: -0.125em;
                margin-right: calc(0.5em + 0rem);
                transition: fill 0.25s ease;
            }
            #buttons02 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
                flex-grow: 1;
                flex-shrink: 1;
                text-align: right;
                width: 100%;
            }
            #buttons02 .button {
                background-color: transparent;
                color: #471a00;
            }
            #buttons02 li a:hover {
                transform: scale(1.0775);
            }
            #buttons09 {
                --flex-alignment: flex-start;
                --alignment: left;
                gap: 1.125rem;
                flex-direction: column;
                flex-wrap: nowrap;
            }
            #buttons09 li a {
                display: inline-flex;
                width: 9.75rem;
                height: 2rem;
                line-height: 2rem;
                padding: 0 1rem;
                vertical-align: middle;
                font-family: "Times New Roman", serif;
                font-size: 1em;
                font-weight: 400;
                border-radius: 1.125rem;
                justify-content: flex-start;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }
            #buttons09 li a svg {
                display: block;
                fill: #471a00;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 1em;
                margin-left: -0.125em;
                margin-right: calc(0.5em + 0rem);
                transition: fill 0.25s ease;
            }
            #buttons09 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
                flex-grow: 1;
                flex-shrink: 1;
                text-align: right;
                width: 100%;
            }
            #buttons09 .button {
                background-color: transparent;
                color: #471a00;
            }
            #buttons09 li a:hover {
                transform: scale(1.0775);
            }
            #buttons03 {
                --flex-alignment: flex-start;
                --alignment: left;
                gap: 1.125rem;
                flex-direction: column;
                flex-wrap: nowrap;
            }
            #buttons03 li a {
                display: inline-flex;
                width: 11.5rem;
                height: 2rem;
                line-height: 2rem;
                padding: 0 1rem;
                vertical-align: middle;
                font-family: "Times New Roman", serif;
                font-size: 1em;
                font-weight: 400;
                border-radius: 1.125rem;
                justify-content: flex-start;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }
            #buttons03 li a svg {
                display: block;
                fill: #471a00;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 1em;
                margin-left: -0.125em;
                margin-right: calc(0.5em + 0rem);
                transition: fill 0.25s ease;
            }
            #buttons03 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
                flex-grow: 1;
                flex-shrink: 1;
                text-align: right;
                width: 100%;
            }
            #buttons03 .button {
                background-color: transparent;
                color: #471a00;
            }
            #buttons03 li a:hover {
                transform: scale(1.0775);
            }
            #buttons07 {
                --flex-alignment: flex-start;
                --alignment: left;
                gap: 1.125rem;
                flex-direction: column;
                flex-wrap: nowrap;
            }
            #buttons07 li a {
                display: inline-flex;
                width: 9.25rem;
                height: 2rem;
                line-height: 2rem;
                padding: 0 1rem;
                vertical-align: middle;
                font-family: "Times New Roman", serif;
                font-size: 1em;
                font-weight: 400;
                border-radius: 1.125rem;
                justify-content: flex-start;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }
            #buttons07 li a svg {
                display: block;
                fill: #471a00;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 1em;
                margin-left: -0.125em;
                margin-right: calc(0.5em + 0rem);
                transition: fill 0.25s ease;
            }
            #buttons07 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
                flex-grow: 1;
                flex-shrink: 1;
                text-align: right;
                width: 100%;
            }
            #buttons07 .button {
                background-color: transparent;
                color: #471a00;
            }
            #buttons07 li a:hover {
                transform: scale(1.0775);
            }
            #buttons04 {
                --flex-alignment: flex-start;
                --alignment: left;
                gap: 1.125rem;
                flex-direction: column;
                flex-wrap: nowrap;
            }
            #buttons04 li a {
                display: inline-flex;
                width: 7.25rem;
                height: 2rem;
                line-height: 2rem;
                padding: 0 1rem;
                vertical-align: middle;
                font-family: "Times New Roman", serif;
                font-size: 1em;
                font-weight: 400;
                border-radius: 1.125rem;
                justify-content: flex-start;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }
            #buttons04 li a svg {
                display: block;
                fill: #471a00;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 1em;
                margin-left: -0.125em;
                margin-right: calc(0.5em + 0rem);
                transition: fill 0.25s ease;
            }
            #buttons04 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
                flex-grow: 1;
                flex-shrink: 1;
                text-align: right;
                width: 100%;
            }
            #buttons04 .button {
                background-color: transparent;
                color: #471a00;
            }
            #buttons04 li a:hover {
                transform: scale(1.0775);
            }
            #buttons05 {
                --flex-alignment: flex-start;
                --alignment: left;
                gap: 1.125rem;
                flex-direction: column;
                flex-wrap: nowrap;
            }
            #buttons05 li a {
                display: inline-flex;
                width: 8rem;
                height: 2rem;
                line-height: 2rem;
                padding: 0 1rem;
                vertical-align: middle;
                font-family: "Times New Roman", serif;
                font-size: 1em;
                font-weight: 400;
                border-radius: 1.125rem;
                justify-content: flex-start;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }
            #buttons05 li a svg {
                display: block;
                fill: #471a00;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 1em;
                margin-left: -0.125em;
                margin-right: calc(0.5em + 0rem);
                transition: fill 0.25s ease;
            }
            #buttons05 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
                flex-grow: 1;
                flex-shrink: 1;
                text-align: right;
                width: 100%;
            }
            #buttons05 .button {
                background-color: transparent;
                color: #471a00;
            }
            #buttons05 li a:hover {
                transform: scale(1.0775);
            }
            #buttons06 {
                --flex-alignment: flex-start;
                --alignment: left;
                gap: 1.125rem;
                flex-direction: column;
                flex-wrap: nowrap;
            }
            #buttons06 li a {
                display: inline-flex;
                width: 8.25rem;
                height: 2rem;
                line-height: 2rem;
                padding: 0 1rem;
                vertical-align: middle;
                font-family: "Times New Roman", serif;
                font-size: 1em;
                font-weight: 400;
                border-radius: 1.125rem;
                justify-content: flex-start;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }
            #buttons06 li a svg {
                display: block;
                fill: #471a00;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 1em;
                margin-left: -0.125em;
                margin-right: calc(0.5em + 0rem);
                transition: fill 0.25s ease;
            }
            #buttons06 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
                flex-grow: 1;
                flex-shrink: 1;
                text-align: right;
                width: 100%;
            }
            #buttons06 .button {
                background-color: transparent;
                color: #471a00;
            }
            #buttons06 li a:hover {
                transform: scale(1.0775);
            }
            #buttons08 {
                --flex-alignment: flex-start;
                --alignment: left;
                gap: 1.125rem;
                flex-direction: column;
                flex-wrap: nowrap;
            }
            #buttons08 li a {
                display: inline-flex;
                width: 7.5rem;
                height: 2rem;
                line-height: 2rem;
                padding: 0 1rem;
                vertical-align: middle;
                font-family: "Times New Roman", serif;
                font-size: 1em;
                font-weight: 400;
                border-radius: 1.125rem;
                justify-content: flex-start;
                transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
            }
            #buttons08 li a svg {
                display: block;
                fill: #471a00;
                flex-grow: 0;
                flex-shrink: 0;
                height: 100%;
                min-width: 16px;
                pointer-events: none;
                width: 1em;
                margin-left: -0.125em;
                margin-right: calc(0.5em + 0rem);
                transition: fill 0.25s ease;
            }
            #buttons08 li a .label {
                direction: var(--site-language-direction);
                overflow: hidden;
                flex-grow: 1;
                flex-shrink: 1;
                text-align: right;
                width: 100%;
            }
            #buttons08 .button {
                background-color: transparent;
                color: #471a00;
            }
            #buttons08 li a:hover {
                transform: scale(1.0775);
            }
            .image {
                display: block;
                line-height: 0;
                max-width: 100%;
                position: relative;
            }
            .image .frame {
                -webkit-backface-visibility: hidden;
                -webkit-transform: translate3d(0, 0, 0);
                display: inline-block;
                max-width: 100%;
                overflow: hidden;
                vertical-align: top;
                width: 100%;
            }
            .image .frame img {
                border-radius: 0 !important;
                max-width: 100%;
                vertical-align: top;
                width: inherit;
            }
            .image.full .frame {
                display: block;
            }
            .image.full:first-child .frame {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            .image.full:last-child .frame {
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            #image01 .frame {
                width: 100vw;
                height: 5.625rem;
                transition: none;
            }
            #image01 img {
                height: 100% !important;
                object-fit: cover;
                object-position: center;
                width: 100% !important;
            }
            #image01 .frame img {
                transition: none;
            }
            .container {
                position: relative;
            }
            .container > .wrapper {
                vertical-align: top;
                position: relative;
                max-width: 100%;
                border-radius: inherit;
            }
            .container > .wrapper > .inner {
                vertical-align: top;
                position: relative;
                max-width: 100%;
                border-radius: inherit;
                text-align: var(--alignment);
            }
            #main .container.full:first-child > .wrapper {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            #main .container.full:last-child > .wrapper {
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            #main .container.full:first-child > .wrapper > .inner {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            #main .container.full:last-child > .wrapper > .inner {
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            #container01:not(:last-child) {
                margin-bottom: 0.5rem !important;
            }
            #container01 > .wrapper {
                display: inline-block;
                width: 70rem;
                background-color: #eba06a;
            }
            #container01 > .wrapper > .inner {
                --gutters: calc(var(--padding-horizontal) * 2);
                --padding-vertical: 0.625rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }
            #container01.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }
            #container01.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }
            #container01.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }
            #container01.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: flex-start;
            }
            #container01.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }
            #container01.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }
            #container01.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }
            #container01.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }
            #container01.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }
            #container01.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }
            #container01.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            #container01.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            #container01.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }
            #container01.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }
            #container01.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }
            #container01.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }
            #container01.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }
            #container01.columns > .wrapper > .inner > div:first-child,
            #container01.columns > .wrapper > .inner > div:first-child > .full:first-child {
                border-top-left-radius: inherit;
            }
            #container01.columns > .wrapper > .inner > div:last-child,
            #container01.columns > .wrapper > .inner > div:last-child > .full:first-child {
                border-top-right-radius: inherit;
            }
            #container01.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }
            #container01.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }
            #container01.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }
            #container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }
            #container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }
            #container05:not(:last-child) {
                margin-bottom: 1rem !important;
            }
            #container05 > .wrapper {
                display: inline-block;
                width: 70rem;
                background-color: transparent;
            }
            #container05 > .wrapper > .inner {
                --gutters: calc(var(--padding-horizontal) * 2);
                --padding-horizontal: 1rem;
                --padding-vertical: 0.25rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }
            #container05.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }
            #container05.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }
            #container05.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }
            #container05.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: flex-start;
            }
            #container05.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }
            #container05.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }
            #container05.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }
            #container05.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }
            #container05.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }
            #container05.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }
            #container05.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            #container05.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            #container05.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }
            #container05.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }
            #container05.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }
            #container05.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }
            #container05.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }
            #container05.columns > .wrapper > .inner > div:first-child,
            #container05.columns > .wrapper > .inner > div:first-child > .full:first-child {
                border-top-left-radius: inherit;
            }
            #container05.columns > .wrapper > .inner > div:last-child,
            #container05.columns > .wrapper > .inner > div:last-child > .full:first-child {
                border-top-right-radius: inherit;
            }
            #container05.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }
            #container05.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }
            #container05.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }
            #container05.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }
            #container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }
            #container03:not(:first-child) {
                margin-top: 1rem !important;
            }
            #container03:not(:last-child) {
                margin-bottom: 1rem !important;
            }
            #container03 > .wrapper {
                display: inline-block;
                width: 70rem;
                background-color: transparent;
            }
            #container03 > .wrapper > .inner {
                --gutters: calc(var(--padding-horizontal) * 2);
                --padding-horizontal: 1rem;
                --padding-vertical: 1rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }
            #container03.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }
            #container03.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }
            #container03.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }
            #container03.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: flex-start;
            }
            #container03.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }
            #container03.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }
            #container03.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }
            #container03.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }
            #container03.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }
            #container03.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }
            #container03.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            #container03.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            #container03.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }
            #container03.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }
            #container03.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }
            #container03.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }
            #container03.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }
            #container03.columns > .wrapper > .inner > div:first-child,
            #container03.columns > .wrapper > .inner > div:first-child > .full:first-child {
                border-top-left-radius: inherit;
            }
            #container03.columns > .wrapper > .inner > div:last-child,
            #container03.columns > .wrapper > .inner > div:last-child > .full:first-child {
                border-top-right-radius: inherit;
            }
            #container03.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }
            #container03.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }
            #container03.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }
            #container03.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }
            #container03.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }
            #container02 > .wrapper {
                display: inline-block;
                width: 70rem;
                background-color: transparent;
            }
            #container02 > .wrapper > .inner {
                --gutters: calc(var(--padding-horizontal) * 2);
                --padding-horizontal: 1rem;
                --padding-vertical: 1rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }
            #container02.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }
            #container02.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }
            #container02.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }
            #container02.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: flex-start;
            }
            #container02.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }
            #container02.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }
            #container02.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }
            #container02.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }
            #container02.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }
            #container02.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }
            #container02.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            #container02.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            #container02.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }
            #container02.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }
            #container02.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }
            #container02.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }
            #container02.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }
            #container02.columns > .wrapper > .inner > div:first-child,
            #container02.columns > .wrapper > .inner > div:first-child > .full:first-child {
                border-top-left-radius: inherit;
            }
            #container02.columns > .wrapper > .inner > div:last-child,
            #container02.columns > .wrapper > .inner > div:last-child > .full:first-child {
                border-top-right-radius: inherit;
            }
            #container02.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }
            #container02.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }
            #container02.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }
            #container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }
            #container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }
            #container04:not(:last-child) {
                margin-bottom: 1rem !important;
            }
            #container04 > .wrapper {
                display: inline-block;
                width: 70rem;
                background-color: transparent;
            }
            #container04 > .wrapper > .inner {
                --gutters: calc(var(--padding-horizontal) * 2);
                --padding-horizontal: 1rem;
                --padding-vertical: 1rem;
                padding: var(--padding-vertical) var(--padding-horizontal);
            }
            #container04.default > .wrapper > .inner > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }
            #container04.default > .wrapper > .inner > *:first-child {
                margin-top: 0 !important;
            }
            #container04.default > .wrapper > .inner > *:last-child {
                margin-bottom: 0 !important;
            }
            #container04.columns > .wrapper > .inner {
                flex-wrap: wrap;
                display: flex;
                align-items: flex-start;
            }
            #container04.columns > .wrapper > .inner > * {
                flex-grow: 0;
                flex-shrink: 0;
                max-width: 100%;
                text-align: var(--alignment);
                padding: 0 0 0 var(--gutters);
            }
            #container04.columns > .wrapper > .inner > * > * {
                margin-bottom: var(--spacing);
                margin-top: var(--spacing);
            }
            #container04.columns > .wrapper > .inner > * > *:first-child {
                margin-top: 0 !important;
            }
            #container04.columns > .wrapper > .inner > * > *:last-child {
                margin-bottom: 0 !important;
            }
            #container04.columns > .wrapper > .inner > *:first-child {
                margin-left: calc(var(--gutters) * -1);
            }
            #container04.default > .wrapper > .inner > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                max-width: none !important;
                width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
            }
            #container04.default > .wrapper > .inner > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            #container04.default > .wrapper > .inner > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            #container04.columns > .wrapper > .inner > div > .full {
                margin-left: calc(var(--gutters) * -0.5);
                max-width: none !important;
                width: calc(100% + var(--gutters) + 0.4725px);
            }
            #container04.columns > .wrapper > .inner > div:first-child > .full {
                margin-left: calc(var(--padding-horizontal) * -1);
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }
            #container04.columns > .wrapper > .inner > div:last-child > .full {
                width: calc(100% + var(--padding-horizontal) + calc(var(--gutters) * 0.5) + 0.4725px);
            }
            #container04.columns > .wrapper > .inner > div > .full:first-child {
                margin-top: calc(var(--padding-vertical) * -1) !important;
            }
            #container04.columns > .wrapper > .inner > div > .full:last-child {
                margin-bottom: calc(var(--padding-vertical) * -1) !important;
            }
            #container04.columns > .wrapper > .inner > div:first-child,
            #container04.columns > .wrapper > .inner > div:first-child > .full:first-child {
                border-top-left-radius: inherit;
            }
            #container04.columns > .wrapper > .inner > div:last-child,
            #container04.columns > .wrapper > .inner > div:last-child > .full:first-child {
                border-top-right-radius: inherit;
            }
            #container04.columns > .wrapper > .inner > .full {
                align-self: stretch;
            }
            #container04.columns > .wrapper > .inner > .full:first-child {
                border-bottom-left-radius: inherit;
                border-top-left-radius: inherit;
            }
            #container04.columns > .wrapper > .inner > .full:last-child {
                border-bottom-right-radius: inherit;
                border-top-right-radius: inherit;
            }
            #container04.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                border-radius: inherit;
                height: calc(100% + (var(--padding-vertical) * 2));
            }
            #container04.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                border-radius: inherit;
                height: 100%;
                position: absolute;
                width: 100%;
            }
            h1,
            h2,
            h3,
            p {
                direction: var(--site-language-direction);
                position: relative;
            }
            h1 span.p,
            h2 span.p,
            h3 span.p,
            p span.p {
                display: block;
                position: relative;
            }
            h1 span[style],
            h2 span[style],
            h3 span[style],
            p span[style],
            h1 strong,
            h2 strong,
            h3 strong,
            p strong,
            h1 a,
            h2 a,
            h3 a,
            p a,
            h1 code,
            h2 code,
            h3 code,
            p code,
            h1 mark,
            h2 mark,
            h3 mark,
            p mark,
            h1 spoiler-text,
            h2 spoiler-text,
            h3 spoiler-text,
            p spoiler-text {
                -webkit-text-fill-color: currentcolor;
            }
            #text06:not(:first-child) {
                margin-top: 1.25rem !important;
            }
            #text06:not(:last-child) {
                margin-bottom: 1.25rem !important;
            }
            #text06 {
                text-align: left;
                color: #471a00;
                font-family: "Times New Roman", serif;
                font-size: 1.5em;
                line-height: 1.5;
                font-weight: 400;
            }
            #text06 a {
                text-decoration: underline;
            }
            #text06 a:hover {
                text-decoration: none;
            }
            #text06 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text13 {
                text-align: justify;
                color: #471a00;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1.125em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text13 a:hover {
                color: #bd0d08;
            }
            #text13 a {
                text-decoration: underline;
            }
            #text13 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text21:not(:first-child) {
                margin-top: 0.875rem !important;
            }
            #text21:not(:last-child) {
                margin-bottom: 0.875rem !important;
            }
            #text21 {
                text-align: center;
                color: #cc8039;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text21 a {
                text-decoration: underline;
            }
            #text21 a:hover {
                text-decoration: none;
            }
            #text21 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text14:not(:first-child) {
                margin-top: 1.25rem !important;
            }
            #text14:not(:last-child) {
                margin-bottom: 1.25rem !important;
            }
            #text14 {
                text-align: left;
                color: #471a00;
                font-family: "Times New Roman", serif;
                font-size: 1.5em;
                line-height: 1.5;
                font-weight: 400;
            }
            #text14 a {
                text-decoration: underline;
            }
            #text14 a:hover {
                text-decoration: none;
            }
            #text14 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text15 {
                text-align: justify;
                color: #471a00;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1.125em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text15 a:hover {
                color: #bd0d08;
            }
            #text15 a {
                text-decoration: underline;
            }
            #text15 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text16:not(:first-child) {
                margin-top: 0.875rem !important;
            }
            #text16:not(:last-child) {
                margin-bottom: 0.875rem !important;
            }
            #text16 {
                text-align: center;
                color: #cc8039;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text16 a {
                text-decoration: underline;
            }
            #text16 a:hover {
                text-decoration: none;
            }
            #text16 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text02:not(:first-child) {
                margin-top: 1.25rem !important;
            }
            #text02:not(:last-child) {
                margin-bottom: 1.25rem !important;
            }
            #text02 {
                text-align: left;
                color: #471a00;
                font-family: "Times New Roman", serif;
                font-size: 1.5em;
                line-height: 1.5;
                font-weight: 400;
            }
            #text02 a {
                text-decoration: underline;
            }
            #text02 a:hover {
                text-decoration: none;
            }
            #text02 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text03 {
                text-align: justify;
                color: #471a00;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1.125em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text03 a:hover {
                color: #bd0d08;
            }
            #text03 a {
                text-decoration: underline;
            }
            #text03 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text05 {
                text-align: center;
                color: #471a00;
                font-family: "Times New Roman", serif;
                font-size: 2em;
                line-height: 1.5;
                font-weight: 400;
            }
            #text05 a {
                text-decoration: underline;
            }
            #text05 a:hover {
                text-decoration: none;
            }
            #text05 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text10 {
                text-align: justify;
                color: #471a00;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1.125em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text10 a:hover {
                color: #bd0d08;
            }
            #text10 a {
                text-decoration: underline;
            }
            #text10 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text11:not(:first-child) {
                margin-top: 0.875rem !important;
            }
            #text11:not(:last-child) {
                margin-bottom: 0.875rem !important;
            }
            #text11 {
                text-align: center;
                color: #cc8039;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text11 a {
                text-decoration: underline;
            }
            #text11 a:hover {
                text-decoration: none;
            }
            #text11 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text01:not(:first-child) {
                margin-top: 0.875rem !important;
            }
            #text01:not(:last-child) {
                margin-bottom: 0.875rem !important;
            }
            #text01 {
                text-align: center;
                color: #cc8039;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text01 a {
                text-decoration: underline;
            }
            #text01 a:hover {
                text-decoration: none;
            }
            #text01 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text12 {
                text-align: justify;
                color: #471a00;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text12 a {
                text-decoration: underline;
            }
            #text12 a:hover {
                text-decoration: none;
            }
            #text12 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text18:not(:first-child) {
                margin-top: 0.25rem !important;
            }
            #text18:not(:last-child) {
                margin-bottom: 0.25rem !important;
            }
            #text18 {
                text-align: left;
                color: #471a00;
                font-family: "Times New Roman", serif;
                font-size: 1.5em;
                line-height: 1.5;
                font-weight: 400;
            }
            #text18 a {
                text-decoration: underline;
            }
            #text18 a:hover {
                text-decoration: none;
            }
            #text18 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text19:not(:first-child) {
                margin-top: 0.875rem !important;
            }
            #text19:not(:last-child) {
                margin-bottom: 0.875rem !important;
            }
            #text19 {
                text-align: center;
                color: #cc8039;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text19 a {
                text-decoration: underline;
            }
            #text19 a:hover {
                text-decoration: none;
            }
            #text19 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text04:not(:first-child) {
                margin-top: 0.25rem !important;
            }
            #text04:not(:last-child) {
                margin-bottom: 0.25rem !important;
            }
            #text04 {
                text-align: left;
                color: #471a00;
                font-family: "Times New Roman", serif;
                font-size: 1.5em;
                line-height: 1.5;
                font-weight: 400;
            }
            #text04 a {
                text-decoration: underline;
            }
            #text04 a:hover {
                text-decoration: none;
            }
            #text04 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text08:not(:first-child) {
                margin-top: 0.875rem !important;
            }
            #text08:not(:last-child) {
                margin-bottom: 0.875rem !important;
            }
            #text08 {
                text-align: center;
                color: #cc8039;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1em;
                line-height: 1.125;
                font-weight: 400;
            }
            #text08 a {
                text-decoration: underline;
            }
            #text08 a:hover {
                text-decoration: none;
            }
            #text08 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            #text09:not(:first-child) {
                margin-top: 0.25rem !important;
            }
            #text09:not(:last-child) {
                margin-bottom: 0.25rem !important;
            }
            #text09 {
                text-align: left;
                color: #471a00;
                font-family: "Times New Roman", serif;
                font-size: 1.5em;
                line-height: 1.5;
                font-weight: 400;
            }
            #text09 a {
                text-decoration: underline;
            }
            #text09 a:hover {
                text-decoration: none;
            }
            #text09 span.p:nth-child(n + 2) {
                margin-top: 1rem;
            }
            .video {
                position: relative;
            }
            .video video {
                display: inline-block;
                max-width: 100%;
                vertical-align: top;
            }
            .video .frame {
                display: inline-block;
                max-width: 100%;
                overflow: hidden;
                position: relative;
                vertical-align: top;
            }
            .video .frame:before {
                content: "";
                display: block;
                width: 100%;
            }
            .video .frame iframe {
                bottom: 0px;
                height: 100%;
                left: 0px;
                position: absolute;
                right: 0px;
                top: 0px;
                width: 100%;
                background-color: #000000;
            }
            .video.full video {
                display: block;
            }
            .video.full:first-child video {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            .video.full:last-child video {
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            .video.full .frame {
                display: block;
            }
            .video.full:first-child .frame {
                border-top-left-radius: inherit;
                border-top-right-radius: inherit;
            }
            .video.full:last-child .frame {
                border-bottom-left-radius: inherit;
                border-bottom-right-radius: inherit;
            }
            #video02 video {
                border-radius: 0rem;
                width: 20rem;
            }
            #video02 .frame {
                border-radius: 0rem;
                width: 20rem;
            }
            #video02 .frame:before {
                padding-top: 56.25%;
            }
            #header {
                margin-bottom: 0rem !important;
            }
            #footer {
                margin-top: 0.5rem !important;
            }
            .table-wrapper {
                max-width: 100%;
                -webkit-overflow-scrolling: touch;
                overflow-x: auto;
                overflow-y: hidden;
            }
            .table-inner {
                display: inline-block;
                max-width: 100%;
            }
            table {
                direction: var(--site-language-direction);
                text-align: var(--site-language-alignment);
                width: 100%;
            }
            th {
                text-align: var(--site-language-alignment);
            }
            #table03 .table-inner {
                width: 30rem;
            }
            #table03 th {
                color: #471a00;
                font-family: "Times New Roman", serif;
                font-size: 1.125em;
                line-height: 1.125;
                font-weight: 400;
            }
            #table03 th a {
                text-decoration: underline;
            }
            #table03 th a:hover {
                text-decoration: none;
            }
            #table03 td {
                color: #471a00;
                font-family: "Times New Roman", serif;
                font-size: 0.875em;
                line-height: 1.125;
                font-weight: 400;
            }
            #table03 td a:hover {
                color: #bd0d08;
            }
            #table03 td a {
                text-decoration: underline;
            }
            #table03 thead {
                border-bottom: solid 2px #cc8039;
            }
            #table03 tbody tr {
                border-top: solid 1px rgba(204, 128, 57, 0.373);
            }
            #table03 tbody tr:first-child {
                border-top: 0;
            }
            #table03 th,
            #table03 td {
                padding: 0.5rem 0.6875rem;
            }
            #table03 th:first-child,
            #table03 td:first-child {
                padding-left: 0;
            }
            #table03 th:last-child,
            #table03 td:last-child {
                padding-right: 0;
            }
            #main > .inner > footer > :last-child {
                margin-bottom: 0.5rem !important;
            }
            @media (max-width: 1920px) {
            }
            @media (max-width: 1680px) {
                html {
                    font-size: 10pt;
                }
            }
            @media (max-width: 1280px) {
                html {
                    font-size: 10pt;
                }
            }
            @media (max-width: 1024px) {
            }
            @media (max-width: 980px) {
                html {
                    font-size: 9pt;
                }
            }
            @media (max-width: 736px) {
                html {
                    font-size: 8pt;
                }
                #main > .inner {
                    --padding-horizontal: 0rem;
                    --padding-vertical: 0rem;
                    --spacing: 0rem;
                }
                #main > .inner > * > .full {
                    margin-left: calc(0rem);
                    max-width: calc(100% + 0rem + 0.4725px);
                    width: calc(100% + 0rem + 0.4725px);
                }
                #main > .inner > * > .full.screen {
                    margin-left: -50vw;
                }
                #main > .inner > header > .full:first-child {
                    margin-top: 0rem !important;
                }
                #main > .inner > footer > .full:last-child {
                    margin-bottom: 0rem !important;
                }
                #buttons01 {
                    gap: 0.75rem;
                }
                #buttons01 li a {
                    letter-spacing: 0rem;
                    font-size: 1em;
                }
                #buttons01 li a svg {
                    width: 1em;
                }
                #buttons02 {
                    gap: 1.125rem;
                }
                #buttons02 li a {
                    letter-spacing: 0rem;
                    font-size: 1em;
                }
                #buttons02 li a svg {
                    width: 0.5em;
                }
                #buttons09 {
                    gap: 1.125rem;
                }
                #buttons09 li a {
                    letter-spacing: 0rem;
                    font-size: 1em;
                }
                #buttons09 li a svg {
                    width: 0.5em;
                }
                #buttons03 {
                    gap: 1.125rem;
                }
                #buttons03 li a {
                    letter-spacing: 0rem;
                    font-size: 1em;
                }
                #buttons03 li a svg {
                    width: 0.5em;
                }
                #buttons07 {
                    gap: 1.125rem;
                }
                #buttons07 li a {
                    letter-spacing: 0rem;
                    font-size: 1em;
                }
                #buttons07 li a svg {
                    width: 0.5em;
                }
                #buttons04 {
                    gap: 1.125rem;
                }
                #buttons04 li a {
                    letter-spacing: 0rem;
                    font-size: 1em;
                }
                #buttons04 li a svg {
                    width: 0.5em;
                }
                #buttons05 {
                    gap: 1.125rem;
                }
                #buttons05 li a {
                    letter-spacing: 0rem;
                    font-size: 1em;
                }
                #buttons05 li a svg {
                    width: 0.5em;
                }
                #buttons06 {
                    gap: 1.125rem;
                }
                #buttons06 li a {
                    letter-spacing: 0rem;
                    font-size: 1em;
                }
                #buttons06 li a svg {
                    width: 0.5em;
                }
                #buttons08 {
                    gap: 1.125rem;
                }
                #buttons08 li a {
                    letter-spacing: 0rem;
                    font-size: 1em;
                }
                #buttons08 li a svg {
                    width: 0.5em;
                }
                #image01 .frame {
                    width: 100vw;
                    height: 7.03125rem !important;
                }
                #image01 img {
                    height: 100% !important;
                    object-fit: cover;
                    object-position: center;
                    width: 100% !important;
                }
                #container01:not(:last-child) {
                    margin-bottom: 0.375rem !important;
                }
                #container01 > .wrapper > .inner {
                    --gutters: calc(var(--padding-vertical) * 2);
                    --padding-vertical: 0.625rem;
                }
                #container01.columns > .wrapper > .inner {
                    flex-direction: column !important;
                    flex-wrap: nowrap !important;
                }
                #container01.columns > .wrapper > .inner > span {
                    height: 0;
                    margin-top: calc(var(--gutters) * -1);
                    pointer-events: none;
                    visibility: hidden;
                }
                #container01.columns > .wrapper > .inner > *:first-child {
                    margin-left: 0 !important;
                    padding-top: 0 !important;
                }
                #container01.columns > .wrapper > .inner > * {
                    padding: calc(var(--gutters) * 0.5) 0 !important;
                }
                #container01.columns > .wrapper > .inner > *:last-child {
                    padding-bottom: 0 !important;
                }
                #container01.columns > .wrapper > .inner > div > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container01.columns > .wrapper > .inner > div:first-of-type > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container01.columns > .wrapper > .inner > div:last-of-type > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container01.columns > .wrapper > .inner > div > .full:first-child {
                    margin-top: calc(var(--gutters) * -0.5) !important;
                }
                #container01.columns > .wrapper > .inner > div > .full:last-child {
                    margin-bottom: calc(var(--gutters) * -0.5) !important;
                }
                #container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
                    margin-top: calc(var(--padding-vertical) * -1) !important;
                }
                #container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
                    margin-bottom: calc(var(--padding-vertical) * -1) !important;
                }
                #container01.columns > .wrapper > .inner > div:first-of-type,
                #container01.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
                    border-top-left-radius: inherit;
                    border-top-right-radius: inherit;
                }
                #container01.columns > .wrapper > .inner > div:last-of-type,
                #container01.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
                    border-bottom-left-radius: inherit;
                    border-bottom-right-radius: inherit;
                }
                #container01.columns > .wrapper > .inner > div:first-of-type,
                #container01.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
                    border-bottom-left-radius: 0 !important;
                }
                #container01.columns > .wrapper > .inner > div:last-of-type,
                #container01.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
                    border-top-right-radius: 0 !important;
                }
                #container01.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                    height: auto;
                }
                #container01.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                    height: auto;
                    position: relative;
                    width: auto;
                }
                #container05:not(:last-child) {
                    margin-bottom: 0.75rem !important;
                }
                #container05 > .wrapper > .inner {
                    --gutters: calc(var(--padding-vertical) * 2);
                    --padding-horizontal: 1rem;
                    --padding-vertical: 0.25rem;
                }
                #container05.columns > .wrapper > .inner {
                    flex-direction: column !important;
                    flex-wrap: nowrap !important;
                }
                #container05.columns > .wrapper > .inner > span {
                    height: 0;
                    margin-top: calc(var(--gutters) * -1);
                    pointer-events: none;
                    visibility: hidden;
                }
                #container05.columns > .wrapper > .inner > *:first-child {
                    margin-left: 0 !important;
                    padding-top: 0 !important;
                }
                #container05.columns > .wrapper > .inner > * {
                    padding: calc(var(--gutters) * 0.5) 0 !important;
                }
                #container05.columns > .wrapper > .inner > *:last-child {
                    padding-bottom: 0 !important;
                }
                #container05.columns > .wrapper > .inner > div > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container05.columns > .wrapper > .inner > div:first-of-type > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container05.columns > .wrapper > .inner > div:last-of-type > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container05.columns > .wrapper > .inner > div > .full:first-child {
                    margin-top: calc(var(--gutters) * -0.5) !important;
                }
                #container05.columns > .wrapper > .inner > div > .full:last-child {
                    margin-bottom: calc(var(--gutters) * -0.5) !important;
                }
                #container05.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
                    margin-top: calc(var(--padding-vertical) * -1) !important;
                }
                #container05.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
                    margin-bottom: calc(var(--padding-vertical) * -1) !important;
                }
                #container05.columns > .wrapper > .inner > div:first-of-type,
                #container05.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
                    border-top-left-radius: inherit;
                    border-top-right-radius: inherit;
                }
                #container05.columns > .wrapper > .inner > div:last-of-type,
                #container05.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
                    border-bottom-left-radius: inherit;
                    border-bottom-right-radius: inherit;
                }
                #container05.columns > .wrapper > .inner > div:first-of-type,
                #container05.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
                    border-bottom-left-radius: 0 !important;
                }
                #container05.columns > .wrapper > .inner > div:last-of-type,
                #container05.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
                    border-top-right-radius: 0 !important;
                }
                #container05.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                    height: auto;
                }
                #container05.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                    height: auto;
                    position: relative;
                    width: auto;
                }
                #container03:not(:first-child) {
                    margin-top: 0.75rem !important;
                }
                #container03:not(:last-child) {
                    margin-bottom: 0.75rem !important;
                }
                #container03 > .wrapper > .inner {
                    --gutters: calc(var(--padding-vertical) * 2);
                    --padding-horizontal: 1rem;
                    --padding-vertical: 1rem;
                }
                #container03.columns > .wrapper > .inner {
                    flex-direction: column !important;
                    flex-wrap: nowrap !important;
                }
                #container03.columns > .wrapper > .inner > span {
                    height: 0;
                    margin-top: calc(var(--gutters) * -1);
                    pointer-events: none;
                    visibility: hidden;
                }
                #container03.columns > .wrapper > .inner > *:first-child {
                    margin-left: 0 !important;
                    padding-top: 0 !important;
                }
                #container03.columns > .wrapper > .inner > * {
                    padding: calc(var(--gutters) * 0.5) 0 !important;
                }
                #container03.columns > .wrapper > .inner > *:last-child {
                    padding-bottom: 0 !important;
                }
                #container03.columns > .wrapper > .inner > div > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container03.columns > .wrapper > .inner > div:first-of-type > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container03.columns > .wrapper > .inner > div:last-of-type > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container03.columns > .wrapper > .inner > div > .full:first-child {
                    margin-top: calc(var(--gutters) * -0.5) !important;
                }
                #container03.columns > .wrapper > .inner > div > .full:last-child {
                    margin-bottom: calc(var(--gutters) * -0.5) !important;
                }
                #container03.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
                    margin-top: calc(var(--padding-vertical) * -1) !important;
                }
                #container03.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
                    margin-bottom: calc(var(--padding-vertical) * -1) !important;
                }
                #container03.columns > .wrapper > .inner > div:first-of-type,
                #container03.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
                    border-top-left-radius: inherit;
                    border-top-right-radius: inherit;
                }
                #container03.columns > .wrapper > .inner > div:last-of-type,
                #container03.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
                    border-bottom-left-radius: inherit;
                    border-bottom-right-radius: inherit;
                }
                #container03.columns > .wrapper > .inner > div:first-of-type,
                #container03.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
                    border-bottom-left-radius: 0 !important;
                }
                #container03.columns > .wrapper > .inner > div:last-of-type,
                #container03.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
                    border-top-right-radius: 0 !important;
                }
                #container03.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                    height: auto;
                }
                #container03.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                    height: auto;
                    position: relative;
                    width: auto;
                }
                #container02 > .wrapper > .inner {
                    --gutters: calc(var(--padding-vertical) * 2);
                    --padding-horizontal: 1rem;
                    --padding-vertical: 1rem;
                }
                #container02.columns > .wrapper > .inner {
                    flex-direction: column !important;
                    flex-wrap: nowrap !important;
                }
                #container02.columns > .wrapper > .inner > span {
                    height: 0;
                    margin-top: calc(var(--gutters) * -1);
                    pointer-events: none;
                    visibility: hidden;
                }
                #container02.columns > .wrapper > .inner > *:first-child {
                    margin-left: 0 !important;
                    padding-top: 0 !important;
                }
                #container02.columns > .wrapper > .inner > * {
                    padding: calc(var(--gutters) * 0.5) 0 !important;
                }
                #container02.columns > .wrapper > .inner > *:last-child {
                    padding-bottom: 0 !important;
                }
                #container02.columns > .wrapper > .inner > div > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container02.columns > .wrapper > .inner > div:first-of-type > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container02.columns > .wrapper > .inner > div:last-of-type > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container02.columns > .wrapper > .inner > div > .full:first-child {
                    margin-top: calc(var(--gutters) * -0.5) !important;
                }
                #container02.columns > .wrapper > .inner > div > .full:last-child {
                    margin-bottom: calc(var(--gutters) * -0.5) !important;
                }
                #container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
                    margin-top: calc(var(--padding-vertical) * -1) !important;
                }
                #container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
                    margin-bottom: calc(var(--padding-vertical) * -1) !important;
                }
                #container02.columns > .wrapper > .inner > div:first-of-type,
                #container02.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
                    border-top-left-radius: inherit;
                    border-top-right-radius: inherit;
                }
                #container02.columns > .wrapper > .inner > div:last-of-type,
                #container02.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
                    border-bottom-left-radius: inherit;
                    border-bottom-right-radius: inherit;
                }
                #container02.columns > .wrapper > .inner > div:first-of-type,
                #container02.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
                    border-bottom-left-radius: 0 !important;
                }
                #container02.columns > .wrapper > .inner > div:last-of-type,
                #container02.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
                    border-top-right-radius: 0 !important;
                }
                #container02.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                    height: auto;
                }
                #container02.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                    height: auto;
                    position: relative;
                    width: auto;
                }
                #container04:not(:last-child) {
                    margin-bottom: 0.75rem !important;
                }
                #container04 > .wrapper > .inner {
                    --gutters: calc(var(--padding-vertical) * 2);
                    --padding-horizontal: 1rem;
                    --padding-vertical: 1rem;
                }
                #container04.columns > .wrapper > .inner {
                    flex-direction: column !important;
                    flex-wrap: nowrap !important;
                }
                #container04.columns > .wrapper > .inner > span {
                    height: 0;
                    margin-top: calc(var(--gutters) * -1);
                    pointer-events: none;
                    visibility: hidden;
                }
                #container04.columns > .wrapper > .inner > *:first-child {
                    margin-left: 0 !important;
                    padding-top: 0 !important;
                }
                #container04.columns > .wrapper > .inner > * {
                    padding: calc(var(--gutters) * 0.5) 0 !important;
                }
                #container04.columns > .wrapper > .inner > *:last-child {
                    padding-bottom: 0 !important;
                }
                #container04.columns > .wrapper > .inner > div > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container04.columns > .wrapper > .inner > div:first-of-type > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container04.columns > .wrapper > .inner > div:last-of-type > .full {
                    margin-left: calc(var(--padding-horizontal) * -1);
                    width: calc(100% + (var(--padding-horizontal) * 2) + 0.4725px);
                }
                #container04.columns > .wrapper > .inner > div > .full:first-child {
                    margin-top: calc(var(--gutters) * -0.5) !important;
                }
                #container04.columns > .wrapper > .inner > div > .full:last-child {
                    margin-bottom: calc(var(--gutters) * -0.5) !important;
                }
                #container04.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
                    margin-top: calc(var(--padding-vertical) * -1) !important;
                }
                #container04.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
                    margin-bottom: calc(var(--padding-vertical) * -1) !important;
                }
                #container04.columns > .wrapper > .inner > div:first-of-type,
                #container04.columns > .wrapper > .inner > div:first-of-type > .full:first-child {
                    border-top-left-radius: inherit;
                    border-top-right-radius: inherit;
                }
                #container04.columns > .wrapper > .inner > div:last-of-type,
                #container04.columns > .wrapper > .inner > div:last-of-type > .full:last-child {
                    border-bottom-left-radius: inherit;
                    border-bottom-right-radius: inherit;
                }
                #container04.columns > .wrapper > .inner > div:first-of-type,
                #container04.columns > .wrapper > .inner > div:first-of-type > .full:last-child {
                    border-bottom-left-radius: 0 !important;
                }
                #container04.columns > .wrapper > .inner > div:last-of-type,
                #container04.columns > .wrapper > .inner > div:last-of-type > .full:first-child {
                    border-top-right-radius: 0 !important;
                }
                #container04.columns > .wrapper > .inner > .full > .full:first-child:last-child {
                    height: auto;
                }
                #container04.columns > .wrapper > .inner > .full > .full:first-child:last-child > * {
                    height: auto;
                    position: relative;
                    width: auto;
                }
                #text06:not(:first-child) {
                    margin-top: 0.9375rem !important;
                }
                #text06:not(:last-child) {
                    margin-bottom: 0.9375rem !important;
                }
                #text06 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1.5em;
                    line-height: 1.5;
                }
                #text13 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1.125em;
                    line-height: 1.125;
                }
                #text21:not(:first-child) {
                    margin-top: 0.65625rem !important;
                }
                #text21:not(:last-child) {
                    margin-bottom: 0.65625rem !important;
                }
                #text21 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1em;
                    line-height: 1.125;
                }
                #text14:not(:first-child) {
                    margin-top: 0.9375rem !important;
                }
                #text14:not(:last-child) {
                    margin-bottom: 0.9375rem !important;
                }
                #text14 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1.5em;
                    line-height: 1.5;
                }
                #text15 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1.125em;
                    line-height: 1.125;
                }
                #text16:not(:first-child) {
                    margin-top: 0.65625rem !important;
                }
                #text16:not(:last-child) {
                    margin-bottom: 0.65625rem !important;
                }
                #text16 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1em;
                    line-height: 1.125;
                }
                #text02:not(:first-child) {
                    margin-top: 0.9375rem !important;
                }
                #text02:not(:last-child) {
                    margin-bottom: 0.9375rem !important;
                }
                #text02 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1.5em;
                    line-height: 1.5;
                }
                #text03 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1.125em;
                    line-height: 1.125;
                }
                #text05 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 2em;
                    line-height: 1.5;
                }
                #text10 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1.125em;
                    line-height: 1.125;
                }
                #text11:not(:first-child) {
                    margin-top: 0.65625rem !important;
                }
                #text11:not(:last-child) {
                    margin-bottom: 0.65625rem !important;
                }
                #text11 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1em;
                    line-height: 1.125;
                }
                #text01:not(:first-child) {
                    margin-top: 0.65625rem !important;
                }
                #text01:not(:last-child) {
                    margin-bottom: 0.65625rem !important;
                }
                #text01 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1em;
                    line-height: 1.125;
                }
                #text12 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1em;
                    line-height: 1.125;
                }
                #text17 {
                text-align: center;
                color: #cc8039;
                font-family: "Times New Roman", serif;
                text-indent: 1.5rem;
                font-size: 1em;
                line-height: 1.125;
                font-weight: 400;
                }
                #text17 a {
                text-decoration: underline;
                }
                #text17 a:hover {
                text-decoration: none;
                }
                #text17 span.p:nth-child(n + 2) {
                margin-top: 1rem;
                }
                #text18:not(:first-child) {
                    margin-top: 0.1875rem !important;
                }
                #text18:not(:last-child) {
                    margin-bottom: 0.1875rem !important;
                }
                #text18 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1.5em;
                    line-height: 1.5;
                }
                #text19:not(:first-child) {
                    margin-top: 0.65625rem !important;
                }
                #text19:not(:last-child) {
                    margin-bottom: 0.65625rem !important;
                }
                #text19 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1em;
                    line-height: 1.125;
                }
                #text04:not(:first-child) {
                    margin-top: 0.1875rem !important;
                }
                #text04:not(:last-child) {
                    margin-bottom: 0.1875rem !important;
                }
                #text04 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1.5em;
                    line-height: 1.5;
                }
                #text08:not(:first-child) {
                    margin-top: 0.65625rem !important;
                }
                #text08:not(:last-child) {
                    margin-bottom: 0.65625rem !important;
                }
                #text08 {
                    text-indent: 1.125rem;
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1em;
                    line-height: 1.125;
                }
                #text09:not(:first-child) {
                    margin-top: 0.1875rem !important;
                }
                #text09:not(:last-child) {
                    margin-bottom: 0.1875rem !important;
                }
                #text09 {
                    letter-spacing: 0rem;
                    width: 100%;
                    font-size: 1.5em;
                    line-height: 1.5;
                }
                #video02 video {
                    width: 20rem;
                }
                #video02 .frame {
                    width: 20rem;
                }
                #header {
                    margin-bottom: 0rem !important;
                }
                #footer {
                    margin-top: 0.375rem !important;
                }
                #table03 th {
                    letter-spacing: 0rem;
                    font-size: 1.125em;
                    line-height: 1.125;
                }
                #table03 td {
                    letter-spacing: 0rem;
                    font-size: 0.875em;
                    line-height: 1.125;
                }
                #table03 th,
                #table03 td {
                    padding: 0.5rem 0.6875rem;
                }
            }
            @media (max-width: 480px) {
                #main > .inner {
                    --spacing: 0rem;
                }
                #buttons01 li a {
                    width: 5.875rem;
                }
                #buttons02 li a {
                    width: 12rem;
                }
                #buttons09 li a {
                    width: 11.5rem;
                }
                #buttons03 li a {
                    width: 13.375rem;
                }
                #buttons07 li a {
                    width: 11rem;
                }
                #buttons04 li a {
                    width: 8.625rem;
                }
                #buttons05 li a {
                    width: 9.125rem;
                }
                #buttons06 li a {
                    width: 9.625rem;
                }
                #buttons08 li a {
                    width: 9.125rem;
                }
                #image01 .frame {
                    height: 5.625rem !important;
                }
            }
            @media (max-width: 360px) {
                #main > .inner {
                    --padding-horizontal: 0rem;
                    --padding-vertical: 0rem;
                    --spacing: 0rem;
                }
                #main > .inner > * > .full {
                    margin-left: calc(-0rem);
                    max-width: calc(100% + 0rem + 0.4725px);
                    width: calc(100% + 0rem + 0.4725px);
                }
                #main > .inner > * > .full.screen {
                    margin-left: -50vw;
                }
                #main > .inner > header > .full:first-child {
                    margin-top: -0rem !important;
                }
                #main > .inner > footer > .full:last-child {
                    margin-bottom: -0rem !important;
                }
                #buttons01 {
                    gap: 0.5625rem;
                }
                #buttons02 {
                    gap: 0.84375rem;
                }
                #buttons09 {
                    gap: 0.84375rem;
                }
                #buttons03 {
                    gap: 0.84375rem;
                }
                #buttons07 {
                    gap: 0.84375rem;
                }
                #buttons04 {
                    gap: 0.84375rem;
                }
                #buttons05 {
                    gap: 0.84375rem;
                }
                #buttons06 {
                    gap: 0.84375rem;
                }
                #buttons08 {
                    gap: 0.84375rem;
                }
                #image01 .frame {
                    height: 4.921875rem !important;
                }
                #container01 > .wrapper > .inner {
                    --gutters: calc(var(--padding-vertical) * 2);
                    --padding-vertical: 0.46875rem;
                }
                #container05 > .wrapper > .inner {
                    --gutters: calc(var(--padding-vertical) * 2);
                    --padding-horizontal: 0.75rem;
                    --padding-vertical: 0.1875rem;
                }
                #container03 > .wrapper > .inner {
                    --gutters: calc(var(--padding-vertical) * 2);
                    --padding-horizontal: 0.75rem;
                    --padding-vertical: 0.75rem;
                }
                #container02 > .wrapper > .inner {
                    --gutters: calc(var(--padding-vertical) * 2);
                    --padding-horizontal: 0.75rem;
                    --padding-vertical: 0.75rem;
                }
                #container04 > .wrapper > .inner {
                    --gutters: calc(var(--padding-vertical) * 2);
                    --padding-horizontal: 0.75rem;
                    --padding-vertical: 0.75rem;
                }
                #text06 {
                    font-size: 1.5em;
                }
                #text13 {
                    font-size: 1.125em;
                }
                #text21 {
                    font-size: 1em;
                }
                #text14 {
                    font-size: 1.5em;
                }
                #text15 {
                    font-size: 1.125em;
                }
                #text16 {
                    font-size: 1em;
                }
                #text02 {
                    font-size: 1.5em;
                }
                #text03 {
                    font-size: 1.125em;
                }
                #text05 {
                    font-size: 1.5em;
                }
                #text10 {
                    font-size: 1.125em;
                }
                #text11 {
                    font-size: 1em;
                }
                #text01 {
                    font-size: 1em;
                }
                #text12 {
                    font-size: 1em;
                }
                #text18 {
                    font-size: 1.5em;
                }
                #text19 {
                    font-size: 1em;
                }
                #text04 {
                    font-size: 1.5em;
                }
                #text08 {
                    font-size: 1em;
                }
                #text09 {
                    font-size: 1.5em;
                }
                #table03 th {
                    font-size: 1.125em;
                }
                #table03 td {
                    font-size: 0.875em;
                }
            }
        /* Removed invalid <noscript> and <style> HTML tags and their contents from CSS file */