body {
    padding: 40px 20px;
}

footer {
    margin: 0 -20px -40px;
}

.blog-body {
    max-width: 800px;
    padding: 0 48px;
    margin: 0 auto;
    font-family: Inter, system-ui, -apple-system, sans-serif;
    color: #1a1a2e;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased
}

.blog-body h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 56px 0 20px;
    letter-spacing: -.01em;
    line-height: 1.3
}

.blog-body a {
    color: #0000F4;
    text-decoration: none
}

.blog-body a:visited {
    color: #0000F4;
    text-decoration: none
}

.blog-body a:hover {
    text-decoration: underline
}

.blog-body .meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 40px
}

.blog-body .intro {
    border-left: 4px solid #0000F4;
    padding: 28px 32px;
    margin-bottom: 48px;
    font-size: 17px;
    color: #444;
    line-height: 1.8
}

.blog-body .toc {
    background: #f9f9fb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 36px;
    margin-bottom: 56px
}

.blog-body .toc-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #6b7280;
    margin-bottom: 20px
}

.blog-body .toc ol {
    list-style: none;
    counter-reset: toc;
    padding: 0;
    margin: 0
}

.blog-body .toc li {
    counter-increment: toc;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px
}

.blog-body .toc li::before {
    content: counter(toc);
    background: #0000F4;
    color: #fff;
    min-width: 26px;
    height: 26px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700
}

.blog-body .toc a {
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 500
}

.blog-body .toc a:hover {
    color: #0000F4;
    text-decoration: none
}

.blog-body p {
    margin-bottom: 18px;
    font-size: 18px;
    color: #333;
    line-height: 1.8
}

.blog-body .callout {
    background: #f8f7ff;
    border: 1px solid #e0daf5;
    border-radius: 10px;
    padding: 24px 28px;
    margin: 24px 0 28px;
    font-size: 15.5px;
    line-height: 1.75
}

.blog-body .callout strong {
    color: #0000F4
}

.blog-body .callout-legal {
    background: #fffdf5;
    border: 1px solid #f0e6c0;
    border-radius: 10px;
    padding: 24px 28px;
    margin: 24px 0 28px;
    font-size: 14.5px;
    line-height: 1.75;
    color: #6b5b00
}

.blog-body .script-box {
    background: #f3f4f6;
    border-radius: 10px;
    padding: 24px 28px;
    margin: 20px 0 28px;
    border-left: 4px solid #0000F4
}

.blog-body .script-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: #0000F4;
    margin-bottom: 10px
}

.blog-body .script-box p {
    font-size: 15px;
    font-style: italic;
    color: #444;
    margin-bottom: 0
}

.blog-body .table-wrap {
    overflow-x: auto;
    margin: 24px 0 28px
}

.blog-body table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14.5px;
    background: #faf9fe;
    border-radius: 10px;
    overflow: hidden
}

.blog-body th, .blog-body td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid #ece8f5
}

.blog-body th {
    font-weight: 700;
    background: #f0edf8;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.blog-body td {
    color: #444
}

.blog-body tr:last-child td {
    border-bottom: none
}

.blog-body .faq-q {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a2e;
    margin: 28px 0 8px
}

.blog-body .faq-a {
    font-size: 15.5px;
    color: #444;
    margin-bottom: 24px
}

.blog-body .cta {
    background: #0000F4;
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    margin: 56px 0 80px;
    color: #fff;
}

.blog-body .cta h2 {
    color: #fff;
    margin: 0 0 12px;
    font-size: 24px
}

.blog-body .cta p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 28px;
    font-size: 16px
}

.blog-body .cta-btn {
    display: inline-block;
    background: #fff;
    color: #0000F4;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    transition: transform .2s, box-shadow .2s
}

.blog-body .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
    text-decoration: none
}

#recall-calc .calc-row {
    margin-bottom: 18px
}

#recall-calc .calc-lbl {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #555;
    margin-bottom: 5px
}

#recall-calc input[type=range] {
    width: 100%;
    accent-color: #0000F4;
    height: 6px;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background: #e5e7eb;
    border-radius: 3px;
    outline: none
}

#recall-calc input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #0000F4;
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2)
}

.stat-card {
    background: #f8f7ff;
    border-radius: 12px;
    padding: 16px 20px
}

.stat-card.highlight {
    background: #0000F4
}

.stat-card.half {
    flex: 1 1 140px;
    min-width: 140px
}

.stat-lbl {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    margin-bottom: 2px
}

.stat-lbl-h {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    font-weight: 500;
    margin-bottom: 2px
}

.stat-val {
    font-size: 24px;
    font-weight: 800;
    color: #0000F4;
    letter-spacing: -.02em
}

.stat-val-h {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.02em
}

.stat-sub {
    font-size: 11px;
    color: #aaa;
    margin-top: 1px
}

@media (max-width: 768px) {
    .blog-body h2 {
        font-size: 22px
    }

    .blog-body .toc {
        padding: 24px
    }

    .blog-body .intro {
        padding: 20px 24px
    }

    .blog-body table {
        font-size: 13px
    }

    .blog-body th, .blog-body td {
        padding: 10px 12px
    }
}

@media (max-width: 900px) {
    .blog-body {
        padding: 0 24px;
    }
}

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

.lst-kix_5x1fcj9h5fdl-7 > li:before {
    content: "\0025cb   "
}

.lst-kix_5x1fcj9h5fdl-5 > li:before {
    content: "\0025a0   "
}

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

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

.lst-kix_5x1fcj9h5fdl-2 > li:before {
    content: "\0025a0   "
}

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

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

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

.lst-kix_5x1fcj9h5fdl-4 > li:before {
    content: "\0025cb   "
}

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

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

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

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

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

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

.lst-kix_5x1fcj9h5fdl-1 > li:before {
    content: "\0025cb   "
}

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

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

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

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

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

.lst-kix_d984rvz6d5d3-1 > li:before {
    content: "\0025cb   "
}

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

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

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

.lst-kix_d984rvz6d5d3-2 > li:before {
    content: "\0025a0   "
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lst-kix_d984rvz6d5d3-7 > li:before {
    content: "\0025cb   "
}

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

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

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

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

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

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

.lst-kix_d984rvz6d5d3-4 > li:before {
    content: "\0025cb   "
}

.lst-kix_d984rvz6d5d3-5 > li:before {
    content: "\0025a0   "
}

.lst-kix_d984rvz6d5d3-8 > li:before {
    content: "\0025a0   "
}

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

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

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

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

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

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

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

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

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

.lst-kix_avrcgrf1yq2f-1 > li:before {
    content: "\0025cb   "
}

.lst-kix_avrcgrf1yq2f-2 > li:before {
    content: "\0025a0   "
}

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

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

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

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

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

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

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

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

.lst-kix_avrcgrf1yq2f-8 > li:before {
    content: "\0025a0   "
}

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

.lst-kix_wuunubv53fz-1 > li:before {
    content: "\0025cb   "
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.lst-kix_wuunubv53fz-8 > li:before {
    content: "\0025a0   "
}

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

.lst-kix_wuunubv53fz-7 > li:before {
    content: "\0025cb   "
}

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

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

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

.lst-kix_wuunubv53fz-2 > li:before {
    content: "\0025a0   "
}

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

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

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

.lst-kix_avrcgrf1yq2f-7 > li:before {
    content: "\0025cb   "
}

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

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

.lst-kix_wuunubv53fz-5 > li:before {
    content: "\0025a0   "
}

.lst-kix_avrcgrf1yq2f-5 > li:before {
    content: "\0025a0   "
}

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

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

.lst-kix_wuunubv53fz-4 > li:before {
    content: "\0025cb   "
}

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

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

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

.lst-kix_avrcgrf1yq2f-4 > li:before {
    content: "\0025cb   "
}

.lst-kix_5x1fcj9h5fdl-8 > li:before {
    content: "\0025a0   "
}

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

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

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

.lst-kix_f77aies7dzpm-1 > li:before {
    content: "\0025cb   "
}

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

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

.lst-kix_f77aies7dzpm-2 > li:before {
    content: "\0025a0   "
}

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

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

.lst-kix_f77aies7dzpm-5 > li:before {
    content: "\0025a0   "
}

.lst-kix_f77aies7dzpm-4 > li:before {
    content: "\0025cb   "
}

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

.lst-kix_f77aies7dzpm-8 > li:before {
    content: "\0025a0   "
}

.lst-kix_f77aies7dzpm-7 > li:before {
    content: "\0025cb   "
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

ol {
    margin: 0;
    padding: 0
}

table td, table th {
    padding: 0
}

.c6 {
    border-right-style: solid;
    padding-top: 0pt;
    border-top-width: 0pt;
    border-right-width: 0pt;
    padding-left: 0pt;
    padding-bottom: 0pt;
    line-height: 1.15;
    border-left-width: 0pt;
    border-top-style: solid;
    border-left-style: solid;
    border-bottom-width: 0pt;
    border-bottom-style: solid;
    orphans: 2;
    widows: 2;
    text-align: left;
    padding-right: 0pt
}

.c0 {
    border-right-style: solid;
    padding-top: 0pt;
    border-top-width: 0pt;
    border-right-width: 0pt;
    padding-left: 0pt;
    padding-bottom: 0pt;
    line-height: 2;
    border-top-style: solid;
    margin-left: 36pt;
    border-bottom-width: 0pt;
    border-bottom-style: solid;
    orphans: 2;
    widows: 2;
    text-align: left;
    padding-right: 0pt
}

.c9 {
    padding-top: 0pt;
    padding-bottom: 0pt;
    line-height: 1.15;
    orphans: 2;
    widows: 2;
    text-align: left;
}

.c10 {
    font-weight: 700;
    text-decoration: none;
    vertical-align: baseline;
    font-size: 23pt;
    font-family: "Arial"
}

.c5 {
    padding: 0;
    margin: 0
}

h1 {
    padding-top: 20pt;
    color: #000000;
    font-size: 20pt;
    padding-bottom: 6pt;
    font-family: "Arial";
    line-height: 1.15;
    page-break-after: avoid;
    orphans: 2;
    widows: 2;
    text-align: left
}

.pt16 {
    padding-top: 16px;
}

.mb16 {
    padding-bottom: 16px;
}

h3 {
    padding-top: 16pt;
    color: #434343;
    font-size: 14pt;
    padding-bottom: 4pt;
    font-family: "Arial";
    line-height: 1.15;
    page-break-after: avoid;
    orphans: 2;
    widows: 2;
    text-align: left
}

.start {
    counter-reset: lst-ctn-kix_ajneur2u843h-0 0
}
