@media only screen and (max-width: 800px) {
    /* Force table to not be like tables anymore */
    #no-more-tables table, #no-more-tables thead, #no-more-tables tbody, #no-more-tables tfoot, #no-more-tables th, #no-more-tables td, #no-more-tables tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    #no-more-tables thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    #no-more-tables tr {
        border: 1px solid #ccc;
    }
    #no-more-tables td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }
    #no-more-tables td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
    /*
	Label the data
	*/
    #no-more-tables td:before {
        content: attr(data-title);
    }
    .break-word {
        -ms-word-break: break-all;
        word-break: break-all; // Non standard for webkit
        word-break: break-word;
        -webkit-hyphens: auto;
        -moz-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    @media only screen and (max-width: 425px) {
        .logo {
            padding: 0px;
            line-height: 25px;
            margin-top: 5px;
        }
        .encabezadoPagina {
            font-size: 1.3em;
            text-align: center;
            line-height: 20px;
            margin-top: 13px;
        }
        #Unidades {
            font-size: 1.3em;
            text-align: center;
            margin-bottom: 20px;
        }
    }
}
@media only screen and (max-width: 639px) and (min-width: 426px) {
    .logo {
        padding: 0px;
        line-height: 20px;
        margin-top: 10px;
    }
    #Unidades {
        height: 34px;
    }
}
@media only screen and (min-width: 640px) and (max-width: 700px) {
    .logo {
        padding: 0px;
        width: 150px;
        line-height: 20px;
    }
    #Unidades {
        font-size: 1.2em;
        height: 34px;
    }
    .encabezadoPagina {
        font-size: 1.9em;
        text-align: center;
        margin-top: 13px;
    }
    .fecha {}
}
@media only screen and (min-width: 701px) and (max-width: 1023px) {
    .logo {
        padding: 0px;
        line-height: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .encabezadoPagina {
        font-size: 2.5em;
        text-align: center;
        margin-top: 25px;
    }
    #Unidades {
        height: 34px;
        font-size: 1.5em;
    }
}
@media only screen and (min-width: 1023px) {
    .logo {
        padding: 0px;
        width: 150px;
        line-height: 20px;
        margin-top: 10px;
    }
    .encabezadoPagina {
        font-size: 1.9em;
        text-align: center;
        margin-top: 30px;
    }
    #Unidades {
        height: 34px;
        margin: 30px;
        font-size: 2.0em;
    }
}
@media only screen and (min-width: 1280px) {
    .logo {
        padding: 0px;
        width: 150px;
        line-height: 20px;
        margin-top: 10px;
    }
    .encabezadoPagina {
        font-size: 2.0em;
        text-align: center;
        margin-top: 70px;
    }
    #Unidades {
        margin: 30px;
        font-size: 2.0em;
    }
}