﻿
/* content version 1*/

.content1 {
    display: block;
    position: relative;
    border: 0px solid #ccc;
    overflow: visible;
    padding: 0px;
    background-color: var(--text_background);
    width: 90%;
    margin: 0px;
    padding: 0px 200px 0px 200px;
}

    /* table */
    /* TABLE DEFINITION */
    .content1 table {
        margin-left: 45px;
        margin-top: 12px;
        margin-bottom: 12px;
        border-radius: 9px;
        border: 1px solid #ccc;
        overflow: hidden;
        border-collapse: collapse;
        outline-color: #ddd;
        outline-style: solid;
        outline-width: 2px;
        outline-offset: -1px;
        caption-side: top;
    }

        .content1 table > caption {
            padding: 10px 15px 0px 10px;
        }

    .content1 thead > tr > th {
        font-weight: normal;
        text-align: center;
        vertical-align: central;
    }


    .content1 tbody > tr:nth-child(even) {
        background-color: #fffdf2;
    }

    .content1 tbody > tr > td, thead > tr > th, tfoot > tr > td {
        border: 1px solid #ccc;
        padding: 5px 10px 5px 5px;
    }

    .content1 tfoot > tr > td {
        border: 1px solid #ccc;
        padding: 5px 10px 5px 5px;
    }

thead, tfoot {
    background-color: #f5f5e9;
}

.subtotal td {
    background-color: #f5f5e9;
    color: red;
}

/* caption */
.content1 h5 {
    padding: 5px 10px 5px 15px;
    margin-top: 20px;
    margin-bottom: 0px;
    font-family: Geologica, sans-serif;
    font-weight: 400;
    border-top: 1px solid #8a9da1;
    border-bottom: 1px solid #8a9da1;
    /**/
    color: var(--theme_background);
    width: 100%;
    text-align: left;
}

.content1 ul, .content1 ol {
    padding: 0 15px 0 25px;
    margin-top: 0px;
    margin-bottom: 0px;
}

.content1 ul {
    border-left: 1px solid #8a9da1;
    margin-left: 20px;
}

.content1 ol {
    column-count: 2;
    column-gap: 50px;
    column-rule-style: solid;
    column-rule-color: #8a9da1;
    column-rule-width: 1px;
    margin-left: 30px;
    margin-right: 30px;
}

.content1 ul > li {
    list-style-type: none;
    break-inside: avoid-column;
    text-align: justify;
    padding-top: 10px;
    padding-bottom: 10px;
}

.content1 ul > li::before {
    content: "";
    display: block;
    position: relative;
    height: 12px;
    width: 12px;
    left: -32px;
    top: 17px;
    border: 1px solid #8a9da1;
    border-radius: 50% 50%;
    background-color: #fff;
    /**/
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

    .content1 ul > li:nth-child(2n+1)::before {
        background-color: #cee0ca;
    }

ol.ordlist {
    list-style-type: lower-alpha;
    column-count: 1;
    border:0px;
    margin:0px;
    padding:0px;
}

    ol.ordlist > li {
        list-style:lower-alpha;
        margin-top: 10px;
        margin-left:15px;
        margin-right: 0px;
        padding-left: 10px;
    }
