#TextPage {
    font: normal 13px/21px Arial, Tahoma, "Segoe UI", Verdana, sans-serif;
    color: #282828;
    text-align: left;
    text-decoration: none;
    padding: 0;
}
#TextPage p{
    color: #282828;
}
#TextPage h1,
#TextPage h2{
    display: block;
    font: 25px Arial, Tahoma, "Segoe UI", Verdana, sans-serif;
    color: #505050;
    padding: 0;
    margin: 0px 0px 10px 0px;
}
#TextPage a {
    font: 13px Arial, Tahoma, "Segoe UI", Verdana, sans-serif;
    color: #4a7194;
}
#TextPage a:hover {
    text-decoration: none;
}
#TextPage img {
    float: left;
    margin: 0px 10px 10px 0px;
    width: 185px;
    padding: 3px;
    background-color: #fff;
    border: 1px solid #ccc;
}
#TextPage ul li {
    margin: 7px 0px;
    list-style: square;
}
#TextPage ol li {
    margin: 7px 0px;
}
#TextPagePrint {
    font: normal 14px/17px Arial, Tahoma, "Segoe UI", Verdana, sans-serif;
    color: #282828;
    text-align: left;
    text-decoration: none;
    padding: 10px;
}
:root {
    --main-border-color: #dbd7d7;
    --header-bg-color: #f8f5f5;
}
#TextPage .table {
    font-size: 13px;
}
#TextPage .table * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
#TextPage .table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--header-bg-color);
}
#TextPage .table-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#TextPage .table-item {
    border-bottom: 1px solid var(--main-border-color);
    border-left: 1px solid var(--main-border-color);
    padding: 5px 15px;
}
#TextPage .table-data-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#TextPage .table-data-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 15px;
    border-bottom: 1px solid var(--main-border-color);
    border-left: 1px solid var(--main-border-color);
    border-right: 1px solid var(--main-border-color);
    text-align: center;
    font-weight: 600;
}
#TextPage .table-data-col {
    width: calc(100% / 3);
    padding: 5px 15px;
    border: 1px solid var(--main-border-color);
    border-top: none;
    border-right: none;
}
#TextPage .table-data-col:last-child {
    border-right: 1px solid var(--main-border-color);
}
#TextPage .table-col-1 {
    width: 25%;
}
#TextPage .table-col-2 {
    width: 75%;
}
#TextPage .table-header .table-col-1,
#TextPage .table-header .table-col-2 {
    padding: 5px 15px;
}
#TextPage .table-header .table-col-1 {
    border: 1px solid var(--main-border-color);
    border-right: none;
}
#TextPage .table-header .table-col-2 {
    border: 1px solid var(--main-border-color);
}

@media screen and (max-width: 767px) {
    #TextPage table {
        display: block;
        width: calc(100vw - 30px);
        overflow: auto;
    }
    #TextPage tbody {
        display: block;
        min-width: 600px;
        width: 700px;
    }
}

@media screen and (max-width: 576px) {
    #TextPage .table-header {
        display: none;
    }
    #TextPage .table-row {
        display: block;
    }
    #TextPage .table-col-1 {
        width: 100%;
    }
    #TextPage .table-col-2 {
        width: 100%;
    }
    #TextPage .table {
        border-top: 1px solid var(--main-border-color);
    }
    #TextPage .table-item {
        border-right: 1px solid var(--main-border-color);
    }
    #TextPage .table-data-col {
        width: calc(100% / 2 - 10%);
    }
    #TextPage .table-data-col:first-child {
        width: 20%;
    }
}

@media screen and (max-width: 420px) {
    #TextPage img {
        float: none;
        margin: 10px 0;
    }
}