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

.simplegallery {
    height:530px;
    overflow: hidden;
	position: relative;
}

.simplegallery .content {
    background: #fff;
    position: relative;
    height:530px;
    overflow: hidden;
}

.simplegallery .content img {
width: 100%;
    
}

.simplegallery .thumbnail {
	position: absolute;
	right:30px; bottom: 30px;

}

.simplegallery .thumbnail .thumb {
    float: left;
    width: 160px;
    height:90px;
    margin: 0 5px;
    cursor: pointer;
    background: #000;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border: solid 1px #fff;
}

.simplegallery .thumbnail .thumb img {
    width: 100%;
    opacity: 0.8;
    transition: all 300ms ease-in;
    -ms-transition: all 300ms ease-in;
    -o-transition: all 300ms ease-in;
    -webkit-transition: all 300ms ease-in;
}
.simplegallery .thumbnail .thumb img:hover{
	opacity:1;
}

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