/*!
 * jQuery simple gallery Plugin 1.1.0
 *
 * http://fernandomoreiraweb.com/
 *
 * Copyright 2013 Fernando Moreira
 * Released under the MIT license:
 *   http://mit.fernandomoreiraweb.com/
 */

.simplegallery {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}

.simplegallery .content {
    background: #fff;
    position: relative;
    width: calc(100% - 120px);
    height: 424px;
    overflow: hidden;
    float: left;
}
.simplegallery .thumbnail {
    float: right;
}

.simplegallery .thumbnail .thumb {
    width: 100px;
    height: 100px;
    margin: 0 0 7px 0;
    cursor: pointer;
    display: block;
}

.simplegallery .thumbnail .last {
    margin: 0;
}
