
/*!
 * 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: 417px;
  height: 390px;
  overflow: hidden;
  padding-left: 5px;
}

.simplegallery .content {
  overflow: hidden;
  width:60%;
  height:60%;
  border:2px #999;
  margin:2% auto;
  vertical-align: middle;
}

.simplegallery .content img {
    max-width:100%;
    max-height:100%;
    vertical-align: middle;
}

.simplegallery .thumbnail .thumb {
  float: left;
  width: 128px;
  height: 128px;
  margin: 0 2px 0 0;
  cursor: pointer;
}
.thumb {
  border: 1px #999 solid;
  padding: 1px;
}

.thumb:hover {
  transform: scale(1.05);
  box-shadow: 2px 2px 2px #999;
}

.simplegallery .thumbnail .thumb img {  
  max-width:100%;
  max-height:100%;
}

.simplegallery .thumbnail .last { margin: 0; }
