/* cool beans*/
/* layout.css */
*{box-sizing:border-box;}
div#wrapper {
    padding: 0px;
    width: 600px;
    height: 700px;
    overflow: auto;
    margin: 0px auto;
}
div#right {
    display: inline-block;
    width: 50%;
    height: 300px;
    float: right;
    padding: 0px;
    /*overflow: auto;*/
    margin: 0px auto;
}
div#left {
    display: inline-block;
    width: 50%;
    height: 300px;
    float: left;
    padding: 0px;
    /*overflow: auto;*/
    margin: 0px auto;
}
div#results {
    display: inline-block;
    width: 100%;
    height: 60px;
    padding: 0px;
    margin: 0px auto;
}
img {
    width: 50px;
    height: 50px;
    /*width: 150px;
    height: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;*/
}
img#dealer {
    width: 290px;
    height: auto;
    margin-left: 10px;
}
html {
    background-color: tan;
    /*background-image:url('http://blog.visme.co/wp-content/uploads/2017/07/50-Beautiful-and-Minimalist-Presentation-Backgrounds-03.jpg'); */
    background-repeat:no-repeat;
    background-position:center center;
    background-attachment: fixed; /* we don't want it to scroll */
    background-size: cover;
}
