@import url(http://fonts.googleapis.com/css?family=Karla:400,700);
body {
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    font-family: 'Karla', sans-serif;
    color: #333;
}

#buttons {
    text-align: center;
    margin: 20px 0;
}

button {
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    padding: 3px 10px 4px 10px;
    margin: 0 1px;
    border-radius: 4px;
    color: #1a7de3;
    /* font-family: 'Karla', sans-serif; */
    font-size: 100%;
}

button:hover,
button.active {
    background-color: #1a7de3;
    color: #fff;
    cursor: pointer;
}

#gallery {
    text-align: center;
    max-width: 1020px;
    margin: 0 auto;
}

#gallery img {
    width: 158px;
    /* height: 150px; */
    border-radius: 3px;
    border: 8px solid #fff;
    margin: 6px;
    -webkit-box-shadow: 0 0 3px 3px #ebebeb;
    box-shadow: 0 0 3px 3px #ebebeb;
    float: left;
}