body {
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    width: 770px;
    height: auto;
    background-color: #FFFFFF;
    display: block;
    margin: 0px auto;
    padding: 10px 0;
    color: #434142;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
    font-weight: 400;
}
h1 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #7B7A7A;
}
h2 {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: #5B5B5E;
    text-transform: uppercase;
}
h2.big {
    font-size: 20px;
}
h3 {
    font-size: 16px;
    line-height: 1.2;
    padding: 2px 0;
}
h3.big {
    font-weight: 800;
    color: #5B5B5E;
    text-transform: uppercase;
}
h4 {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 800;
    color: #5B5B5E;
    text-transform: uppercase;
}
h5 {
    font-size: 12px;
    line-height: 1.2;
    padding: 2px 0;
}
h6 {
    font-size: 10px;
    line-height: 1.2;
    padding: 2px 0;
}
p {
    font-size: 12px;
    line-height: 1.2;
    padding: 2px 0;
}
strong {
    font-weight: 700;
}
.black {
    font-weight: 800;
}
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}
.flex {
    display: flex;
    align-items: center;
    width: 100%;
}
.flex-space {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.flex-top {
    display: flex;
    align-items: flex-start;
    width: 100%;
}
.flex-bottom {
    display: flex;
    align-items: flex-end;
    width: 100%;
}
.mv-5 {
    margin-bottom: 5px;
    margin-top: 5px;
}
.mb-5 {
    margin-bottom: 5px;
}
.mt-10 {
    margin-top: 10px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mt-50 {
    margin-top: 50px;
}
.txt-center {
    text-align: center;
}
.txt-right {
    text-align: right;
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid #ADADB2;
}
.header h1 {
    padding-left: 30px;
    text-align: right;
}
img.logo {
    max-height: 50px;
}
.col-2 {
    width: 50%;
}
.col-2 + .col-2 {
    margin-left: 30px;
}
hr {
    display: inline-block;
    width: 100%;
    margin: 10px auto 20px auto;
    border: 0;
    border-bottom: 2px solid #ADADB2;
}

/* Table */
table {
    background-color: #FFFFFF;
    width: 100%;
    border-spacing: 0px;
    border: 1px solid #ADADB2;
    display: table;
    margin-bottom: 20px;
}
table tr td, table thead tr th {
    padding: 5px 15px;
    border-bottom: 1px solid #ADADB2;
    border-right: 1px solid #ADADB2;
}
table tr:last-child td {
    border-bottom: 0;
}
table tr td:last-child {
    border-right: 0;
}
table thead tr th:last-child {
    border-right: 0;
}
table thead tr th {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    text-align: left;
}
table thead tr th h4,
table thead tr th h5 {
    padding: 0;
    margin: 0;
}
table thead tr th h4 {
    margin-right: 5px;
}
table thead tr th h5 {
    text-transform: none;
}

@media print {
    /*.avoid, table {
        page-break-inside: avoid;
    }*/
    .always {
        page-break-after: always;
    }
}