.dlheader{
/*    border: 1px solid red;*/
    background: white;
    font: bold 16px Arial, Helvetica, sans-serif;
    color: #000;
    width: 100%;
    border-bottom: solid 5px #000000;
}
.dlheader_top{
/*    border: 1px solid blue;*/
    height: 90px;
    max-width: 850px;
    min-width: 300px;
    margin: 0 auto; /*This will center it*/
}
/*==== Dealer Logo =======*/
.dlheader_top_logo{
/*    border: 1px solid black;*/
    display: inline-block;
    float: left;
    padding-top: 10px;
}
#dlheader_top_logo_image{
    height: 75px;
}
.dlheader_info{
/*    border: 1px solid black;*/
    display: block;
    width: 175px;
    height: 100px;
    float: left;
    margin-left: 10px;
    margin-top: 10px;
}
.dlheader_name{
/*    border: 1px solid orange;*/
    display: none;
}
/*==== Address =======*/
.dlheader_address_conatiner{
/*    border: 1px solid red;*/
/*    height: 42px;*/
    width: 195px;
}
.dlheader_address_image{
    /*background: url('../images/address.png') no-repeat;*/
    background: url('../images/shipping-art16x16.png') no-repeat;
    /* shipping-art 40x40 */
/*    border: 1px solid yellow;*/
    width: 20px;
    height: 40px; /*This is set the height to cover how maney lines it will cover*/
    float: left;
}
.dlheader_address_street{
/*    border: 1px solid green;*/
    display: inline-block;
}
.dlheader_city{
/*    border: 1px solid #ff00ff;*/
    display: block;
    width: 190px;
}
/*===== Phone ========*/
.dlheader_phone_conatiner{
    /*border: 1px solid violet;*/
    display: inline-block;
    height: 22px;
    width: 140px;
    margin-top: 10px;
}
.dlheader_phone_image{
/*    border: 1px solid violet;*/
    background: url('../images/phone.png') no-repeat;
    width: 20px;
    height: 20px; /*This is set the height to cover how maney lines it will cover*/
    float: left;
}
.dlheader_phone_no{
    /*border: 1px solid #4c6b55;*/
    display: inline-block;
    text-decoration: none;
    color: #000;
}
/* ============= Hours ===============*/
.dlheader_hours_conatiner{
/*    border: 1px solid green;*/
    opacity: 1.0;
    /*These need to be controlled via @media. We control all aspects based on screen size*/
    height: 65px;
    width: 230px;
    float: right;
    margin-top: 25px;
}
.dlheader_hours_image{
/*    border: 1px solid #ff00ff;*/
    background: url('../images/timing.png') no-repeat;
    width: 20px;
    height: 55px;
    float: left;
}
.dlheader_hours_shown{
/*    border: 1px solid #b4b4b4;*/
    display: inline-block;
    margin-left: 5px;
}



@media (max-width: 670px) {
    .dlheader_top{
        width: 99%;
        border-bottom: 2px solid black;
    }
    .dlheader_hours_conatiner{
        display: none;
    }
}


@media (max-width: 480px) {
    .dlheader{
        border-bottom: solid 3px #000000;
    }
    .dlheader_top{
        height: 50px;

    }
    .dlheader_name, .dlheader_address_conatiner{
        display: none;
    }
    .dlheader_info{
        width: 125px;
        height: 25px;
        margin-top: 3px;

    }

    .dlheader_phone_conatiner{
        margin-top: 0;
        margin-left: 0;
    }
    .dlheader_top_logo{
        padding-top: 3px;
    }
    #dlheader_top_logo_image{
        height: 40px;
    }
    .dlheader_phone_conatiner{
        margin-top: 5px;
    }
}

@media (max-width: 350px) {
    .dlheader{
        max-width: 400px;
        min-width: 330px;
    }
    .dlheader_info{
        width: 25px;
        height: 25px;
    }
    .dlheader_phone_conatiner{
        /*width: 25px;*/
    }

}




