/*
    Max width before this PARTICULAR table gets nasty
    This query will take effect for any screen smaller than 760px
    and also iPads specifically.
    From : http://css-tricks.com/responsive-data-tables/
*/
@media
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 980px)  {

    #banner {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    #footer {
        text-align: left;
        /* border-top: groove silver 1px; */
        /* font-size: small; */
        font-style: italic;
        padding-top: 3px;
        margin:0;
        max-width:100%;
        overflow: auto;
    }
    
    #lastUpdate {
        text-align: left;
        font-style: italic;
        overflow: auto;
        /* font-size: small; */
    }
    
    #container {
        max-width: 100%;
        overflow: auto;
        margin: 0;
    }
    
    #mainTitle {
        margin:0;
        padding:0;
        max-width:100%;
        overflow: auto;
    }
    
    #connection {
        text-align: left;
        margin:0;
        padding:0;
        max-width:100%;
        overflow: auto;
    }
    
    /* Force table to not be like tables anymore */
    table, thead, tbody, th, td, tr {
        display: block;
        max-width: 100%;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    tr { border: 1px solid #ccc; }

    td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        max-width: 100%;
        overflow: auto;
        /*padding-left: 50%;*/
    }
}
