.card {
    padding: 5px;
    margin: 5px;
    border: 1px solid darkgray;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #F5F5F5;
}
.card:hover {
    background-color: #F5FFFF;
}

.card.people {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 370px;
    overflow: hidden;
    vertical-align: top;
}
.card.people:hover {
    background-color: #F5FFFF;
}

.card.people .card-top {
    position: absolute;
    width: 200px;
    display: inline-block;
    height: 220px;
    padding: 0;
    margin: 0;
    text-align: center;
}

.card.people .card-info {
    position: absolute;
    top: 230px;
    display: inline-block;
    width: 95%;
    height: 110px;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


.card.people .card-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.thumb{

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 150px;
    height: 220px;
    max-width: 150px;
    max-height: 220px;
}