﻿/* Responsive CSS Document */
body {
    margin: 10px 0 0 0;
    padding: 0;
    background-color: #72838B;
    font-family: Arial, Verdana, sans-serif;
    text-align: center;
}

.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.tbl {
    width: 100%;
    border: 0px solid #003366;
    border-collapse: collapse;
}

.hide {
    display: none;
}

.header {
    text-align: center;
    background-color: #4682B4;
    color: #ffffff;
    padding: 15px 10px;
}

h1 {
    line-height: 1.2em;
    font-size: 2rem;
    margin: 10px 0;
}

h2 {
    line-height: 1.2em;
    font-size: 1.5rem;
    margin: 8px 0;
    font-weight:normal;
}

.content {
    background-color: #ffffff;
    padding: 15px 20px 24px 20px;
}

    .content h2 {
        color: #073826;
        font-size: 1.2rem;
        padding-top: 5px;
    }

    .content p {
        color: #34373F;
        font-size: 0.95rem;
        text-align: justify;
        line-height: 1.6em;
        padding: 0 10px;
    }

    .content ol,
    .content li {
        color: #103B6E;
        font-size: 1rem;
        text-align: justify;
        line-height: 1.8em;
        padding: 0 15px;
    }

.tbl-listing,
.tbl-listing2,
.gd2 {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    /*display: block;*/
    border:0px solid #EFEFEF;
}

    .tbl-listing th,
    .tbl-listing td,
    .tbl-listing2 th,
    .tbl-listing2 td,
    .gd2 th,
    .gd2 td {
        padding: 8px;
        text-align: left;
        border: 0px solid #d9d9d9;
        word-break: break-word;
    }

    /* Header rows */
    .tbl-listing th {
        background-color: #077C9C;
        font-size: 1rem;
        font-style: oblique;
        color: #DAE5EA;
    }

    .tbl-listing .entry th {
        background-color: #9ACD32;
    }

    .tbl-listing td {
        font-size: 0.95rem;
    }

    .tbl-listing2 th {
        background-color: #DAE5EA;
        font-size: 1rem;
        font-style: oblique;
        color: #077C9C;
    }
.footer {
    font-size: 0.9rem;
    text-align: left;
    background-color: #c4c1ba;
    color: #ffffff;
    padding: 10px;
}
a {
    text-decoration: none;
    color: #BC16B7;
    font-size:1.2rem;
    
}
.info {
    font-weight: bold;
    font-size: 1.5rem;
    color: #003366;
    background-color: #fff;
    letter-spacing: -1px;
    margin: 40px 0 10px 0;
    height:300px;
}

/* Table with gradient header */
.gd2 th {
    background: url(images/th-bg2.jpg) repeat-x left top;
    color: #FFF;
    font-weight: bold;
}

/* ------------------------------
   Responsive Adjustments
--------------------------------*/
@media (max-width: 1024px) {
    .wrapper {
        width: 95%;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    body {
        text-align: left;
    }

    .header {
        padding: 10px;
    }

    .content {
        padding: 10px;
    }

    .tbl-listing th,
    .tbl-listing td {
        font-size: 0.9rem;
        padding: 6px;
    }

    .footer {
        text-align: center;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.4rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .content p,
    .content li {
        font-size: 0.85rem;
    }

    .tbl-listing,
    .tbl-listing2,
    .gd2 {
        /*display: block;*/
        overflow-x: auto;
    }

    .footer {
        font-size: 0.8rem;
        padding: 10px;
    }
}