﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font: inherit;
    font-size: 100%;
    color: inherit;
    vertical-align: baseline;
}

body {
    padding: 10px;
    font-family: Helvetica;
    font-size: 11px;
    color: #000;
}

.document {
    position: relative;
    width: 854px;
    max-width: 100%;
    margin: 0 auto;
}

.full-w {
    width: 100%;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear::before, .clear::after {
    content: "";
    display: block;
    height: 0;
}

.clear::after {
    clear: both;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-line-through {
    text-decoration: line-through;
}

.text-none-transform {
    text-transform: none !important;
}

h1 {
    padding: 0;
    margin: 0;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}

h3 {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}

h4 {
    padding: 0;
    margin: 0;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
}

    h4.h4-b {
        font-size: 12px;
    }

h5 {
    padding: 0;
    margin: 0;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.text-small {
    font-size: 10px;
}

.nowrap {
    white-space: nowrap;
}

.table-1 {
    border-spacing: 0;
    border-collapse: collapse;
}

    .table-1 > tbody > tr > td {
        position: relative;
        padding: 2px 5px;
        vertical-align: top;
    }

        .table-1 > tbody > tr > td td {
            padding-left: 0;
            padding-right: 0;
        }

    .table-1 > tbody > tr.baseline > td {
        vertical-align: baseline;
    }

    .table-1 > tbody > tr > td.col-bdr-db-b {
        border-bottom: 3px double #000;
    }

    .table-1 > tbody > tr.row-border-transparent > td {
        border: 1px solid #000;
    }

        .table-1 > tbody > tr.row-border-transparent > td.col-no-bdr-l {
            border-left: none;
        }

        .table-1 > tbody > tr.row-border-transparent > td.col-no-bdr-r {
            border-right: none;
        }

        .table-1 > tbody > tr.row-border-transparent > td.col-no-bdr-t {
            border-top: none;
        }

        .table-1 > tbody > tr.row-border-transparent > td.col-no-bdr-b {
            border-bottom: none;
        }

    .table-1 > tbody > tr.row-border > td {
        background-color: #D3D3D3 !important;
        border: 1px solid #000;
        border-right-width: 0;
        border-left-width: 0;
    }

        .table-1 > tbody > tr.row-border > td:first-child {
            border-left-width: 1px;
        }

        .table-1 > tbody > tr.row-border > td:last-child {
            border-right-width: 1px;
        }

    .table-1 > tbody > tr.row-border.border-b-db > td {
        border-bottom-width: 3px;
        border-bottom-style: double;
    }


.table-2 {
    display: table;
    border-spacing: 0;
    border-collapse: collapse;
    table-layout: fixed;
}

    .table-2 > .row {
        display: table-row;
    }

        .table-2 > .row > .col {
            display: table-cell;
            padding: 2px 5px;
            vertical-align: top;
            word-break: break-all;
        }

            .table-2 > .row > .col .col {
                padding-left: 0;
                padding-right: 0;
            }

        .table-2 > .row.baseline * {
            vertical-align: baseline !important;
        }

        .table-2 > .row > .col.col-bdr-db-b {
            border-bottom: 3px double #000;
        }

        .table-2 > .row.row-border-transparent > .col {
            border: 1px solid #000;
        }

            .table-2 > .row.row-border-transparent > .col.col-no-bdr-l {
                border-left: none;
            }

            .table-2 > .row.row-border-transparent > .col.col-no-bdr-r {
                border-right: none;
            }

            .table-2 > .row.row-border-transparent > .col.col-no-bdr-t {
                border-top: none;
            }

            .table-2 > .row.row-border-transparent > .col.col-no-bdr-b {
                border-bottom: none;
            }

        .table-2 > .row.row-border > .col {
            background-color: #D3D3D3 !important;
            padding-top: 5px;
            padding-bottom: 5px;
            border: 1px solid #000;
            border-right-width: 0;
            border-left-width: 0;
        }

            .table-2 > .row.row-border > .col:first-child {
                border-left-width: 1px;
            }

            .table-2 > .row.row-border > .col:last-child {
                border-right-width: 1px;
            }

        .table-2 > .row.row-border.border-b-db > .col {
            border-bottom-width: 3px;
            border-bottom-style: double;
        }


.logo {
    display: block;
    height: auto;
    width: 100px;
    margin: 0 auto;
}

.bg-gray {
    background-color: #D3D3D3 !important;
}