#wrapper {
    width:100%; 
    margin:0 auto; /*centers the div horizontally in all browsers (except IE)*/
    text-align:left; /*resets text alignment from body tag */
    border-top:none; 
    padding:10px; 
}

#lightbox {
    position:fixed; /* keeps the lightbox window in the current viewport */
    top:0; 
    left:0; 
    width:100%; 
    height:100%; 
    background:url(overlay.png) repeat; 
    text-align:center;
}
#lightbox p {
    text-align:right; 
    margin-right:20px; 
    font-size:12px; 
}
#lightbox img {
    box-shadow:0 0 25px #111;
    -webkit-box-shadow:0 0 25px #111;
    -moz-box-shadow:0 0 25px #111;
    max-width:95%;
}

.thumb {
	   width: 200px;
	   border: solid 1px;
	   border-color: #ccc;
}

.thumbv {
	   width: auto;
	   max-height:  200px;
	   border: solid 1px;
	   border-color: #ccc;
overflow: hidden;
}

.galleryImgWrapper1 {
    height: 130px;
    overflow: hidden;
}

.galleryImgWrapper2 {
    height: 130px;
    overflow: hidden;
}

.thumbnail {
  position: relative;
  width: 200px;
  height: 115px;
  overflow: hidden;
}
.thumbnail img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  -webkit-transform: translate(-50%,-50%);
      -ms-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}
.thumbnail img.portrait {
  width: 100%;
  height: auto;
}