﻿/** {
    box-sizing: border-box;*/
    /*font-family: Roboto,Arial,Tahoma;*/
    /*font-family: Vollkorn;*/
    /*font-family: Droid Sans;*/
    /*font-family: Lobster;*/
    /*font-size: 17px;*/
/*}

body {
    margin: 0;
}*/
.sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background-color:goldenrod;
    padding: 10px;
    text-align:center;
}
.table, .tableRTL {
    display: table;
    width: 100%;
    line-height: 25px;
    font-size: larger;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    padding: 10px;
}
.col1_2 {
    display: block;
    width: 100%;
    padding: 20px;
}
.col1_3 {
    display: block;
    width: 100%;
    padding: 20px;
}
.col1Table {
    display: block;
    width: 100%;
    padding: 20px;
}
.col2Table {
    display: block;
    width: 100%;
    padding: 20px;
}

@media only screen and (min-width: 601px) {
    .tableRTL {
        display: flex;
        flex-direction: row-reverse;
    }
    .col1_2 {
        display: table-cell;
        width: 50%;
    }
    .col1_3 {
        display: table-cell;
        width: 32%;
    }
    .col1Table {
        display: table-cell;
        width: 25%;
    }
    .col2Table {
        display: table-cell;
        width: 75%;
    }
}

@media only screen and (min-width: 801px) {
    .table, .tableRTL {
        width: 100%;
        max-width: 1000px;
    }
}

