#content {
    background-color: #FFF;
    margin-bottom: 100px;
}

#location-header { 
    display: inline-block;
    position: relative;
    width: 100%;
    background-color: #FFF;
    border-bottom: 1px solid #CCC;
    z-index: 99;
}

body.nav-mode #location-header {
    border-bottom: none;
}

#store-locations {
    width: 100%;
}

#location-block {
    float: right;
    width: 400px;
}

#map-container {
    float: right;
    width: calc(100% - 400px);
    background-color: #F5F5F5;
}

#location-list {
    padding: 0px 20px 100px 20px;
}

#location-list-image {
    width: 100%;
}

#location-list h2 {
    padding: 30px 10px 10px 10px;
    color: #353535;  
    font-family: "Roboto Slab", sans-serif;
    font-size: 15px;
    font-weight: 300;
    text-align: center;
}

.location {
    position: relative;
    padding: 20px 10px;
    cursor: pointer;
}

.location:hover {
    background-color: #F5F5F5;
}

.location-marker {
    position: absolute;
    top: 18px;
    left: 12px;
    width: 26px;
}

.location-text {
    padding-left: 40px;
}

.location h3 {
    padding-bottom: 4px;
    color: #353535;  
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.location p {
    color: #353535;  
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
}

#map-canvas {
    width: 100%;
    height: 620px;
}

.marker {
    display: block;
    position: absolute;
    width: 22px;
}

.popup-content h4 {
    color: #353535;  
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.popup-content p {
    padding: 2px 0px;
    color: #353535;  
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
}

.popup-content a {
    color: #1A7A94;  
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

@media only screen and (max-width: 900px) {
    body.nav-mode #info-header {
        border: none;
    } 
    #location-block {
        float: none;
        width: 100%;
    }
    #map-container {
        float: none;
        width: 100%;
    }
    #map-canvas {
        height: 300px;
    }
    #location-list {
        padding: 0px 20px 100px 20px;
    }
    #location-list-image {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    #map-canvas {
        height: 260px;
    }
    #location-list {
        padding: 0px 0px 100px 0px;
    }
    .location h3 {
        font-size: 16px;
    }
}