@media screen and (max-width: 600px) {
    html {
        font-size: 18px;
    }

    #phone h2 {
        display: none;
    }

    #phone {
        border: none;
        padding-top: 0px;
    }

    #map_canvas_small {
        margin: auto;
        width: 85%;
        height: 275px;
    }

    .grid {
        border: 2px solid silver;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background: #ffffff;
        margin: 0 auto;
        margin-top: 12px;
        margin-bottom: 12px;
        max-width: 1000px;
    }

    .grid_row {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        flex-direction: column;
    }

    .grid_item {
        -webkit-flex: 1;
        flex: 1;
        padding: 12px;
        min-height: 250px;
        -webkit-order: 1;
        order: 1;
        color: #4d4d4b;
        font: normal .813rem sans-serif, geneva, arial, helvetica;
    }

    .grid_item_sidebar {
        -webkit-flex: 1;
        flex: 1;
        padding: 12px;
        -webkit-order: 2;
        order: 2;
        color: #4d4d4b;
    }

    .grid_item_mapcol {
        -webkit-flex: 1;
        flex: 1;
        padding: 12px;
        -webkit-order: 3;
        order: 3;
        font: normal .813rem sans-serif, geneva, arial, helvetica;
    }

    .grid_footer {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        min-height: 100px;
        font: normal 8pt sans-serif, geneva, arial, helvetica;
        border-radius: 0 0 5px 5px;
        -webkit-border-radius: 0 0 5px 5px;
        -ms-border-radius: 0 0 5px 5px;
        background: linear-gradient(#DB0300 20%, #5E0807);
    }

    .grid_footer td a {
        color: white;
        text-decoration: underline;
    }

    .grid_header {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        min-height: 100px;
    }

    .nav-item {
        height: 50px;
        line-height: 50px;
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 4px;
        text-align: left;
        font: normal 1.0rem 'Open Sans Condensed', sans-serif, geneva, arial, helvetica;
        background: linear-gradient(silver, #757575);
    }


}

@media screen and (min-width: 601px) {
    .grid {
        border: 1px solid silver;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        border-radius: 10px;
        background: #ffffff;
        margin: 0 auto;
        margin-top: 12px;
        margin-bottom: 12px;
        max-width: 1000px;
    }

    .grid_row {
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: row;
        flex-direction: row;
    }

    .grid_item {
        -webkit-flex: 1;
        flex: 1;
        padding: 12px;
        min-height: 250px;
        -webkit-order: 2;
        order: 2;
        color: #4d4d4b;
        font: normal 10pt sans-serif, geneva, arial, helvetica;
    }

    .grid_item_sidebar {
        -webkit-flex: 0 0 175px;
        flex: 0 0 175px;
        padding: 12px;
        -webkit-order: 1;
        order: 1;
        color: #4d4d4b;
    }

    .grid_item_mapcol {
        -webkit-flex: 0 0 305px;
        flex: 0 0 305px;
        padding: 12px;
        -webkit-order: 3;
        order: 3;
        font: normal 10pt sans-serif, geneva, arial, helvetica;
    }

    .grid_footer {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        min-height: 100px;
        font: normal 8pt sans-serif, geneva, arial, helvetica;
        border-radius: 0 0 5px 5px;
        -webkit-border-radius: 0 0 5px 5px;
        -ms-border-radius: 0 0 5px 5px;
        background: linear-gradient(#DB0300 20%, #5E0807);
    }

    .grid_footer td a {
        color: white;
        text-decoration: underline;
    }

    .grid_header {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
        min-height: 100px;
    }

    .nav-item {
        padding-top: 8px;
        padding-bottom: 8px;
        padding-left: 4px;
        text-align: left;
        font: normal 12pt sans-serif, geneva, arial, helvetica;
    }

}

footer .grid {
    border: none;
}


