.gallery {
  display: table;
  width: 100%;
}

.cellDiv {
  display: table-cell;
  /*border-top: 3px solid #000;*/
  padding: 0px 0px 10px 3px;
}

.cellDiv a img {
  width: 95%;
  height: auto;
  border: 2px solid #fff;
  -webkit-transition: -webkit-transform .15s ease;
  -moz-transition: -moz-transform .15s ease;
  -o-transition: -o-transform .15s ease;
  -ms-transition: -ms-transform .15s ease;
  transition: transform .15s ease;
}

.cellDiv a:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -o-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
  z-index: 5;
}

.rowDiv {
  display: table-row;
}

.cellDiv figcaption {
  font-size: 10px;
  line-height: 20px;
  padding: 0px 0px 10px 5px;
 }
