/**
 *
 * Styling for display Yelp business profiles
 *
 */
 
.yelp-business {
    font-family: Arial,'Lucida Grande','Bitstream Vera Sans',Verdana,sans-serif;
    overflow: hidden;
    width: 400px;
    padding: 10px;
    margin: 0 10px 10px;
    background-color: #fefefe;
    background-position: 10px 10px;
    background-repeat: no-repeat;
    border: 1px solid #aaa;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.17);
    -moz-box-shadow: 2px 2px 3px rgba(0,0,0,0.17);
    -webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.17);
}

    .yelp-business.left {
        float: left;
        width: auto;
        margin: 0 10px 10px 0;
    }
    
    .yelp-business.right {
        float: right;
        width: auto;
    }
    
    .yelp-business.center {
        margin: 0 auto 10px;
    }

.yelp-business * {
    vertical-align: middle;
}

/**
 *
 * This is to override common general theme styling for images, you can easily override these as well.
 * I had to make these /kind/ of specific since so many themes have conflicting rules.
 *
 */
 
 /* Many themes have some kind of styling on images */
div.yelp-business img {
    padding: 0;
    margin: 0;
    border: none;
    background: transparent none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    float: none;
}

.yelp-business img.picture {
    display: block;
    float: left;
    width: 60px;
    height: 60px;
    padding-right: 10px;
}

.yelp-business .info {
    float: left;
}

.yelp-business a.name {
    display: block;
    float: none;
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    margin: 0 0 10px;
    color: #C41200;
    text-decoration: none;
}

    .yelp-business a.name:hover {
        text-decoration: underline;
    }

.yelp-business .review-count {
    color: #999;
    font-size: 11px;
    line-height: 1;
    margin-left: 10px;
}

.yelp-business .yelp-branding img {
    display: block;
}