/* Styles for Responsive thumbnail layout */
.hspacer {
  padding: 0;
  margin:0;
  border: none;	
  width: 1px;
  height: 225px;
}
div.gallery {
  box-sizing: border-box;
  border: none;	
}
div.gallery:hover {
  border: none;
}
div.gallery table {
  table-layout: fixed;
  box-sizing: border-box;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
div.gallery img {
  box-sizing: border-box;
  padding: 0;
  margin:0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
div.gallery figcaption {
  text-align: center;
  color: white;
  /*background-color: lightblue;*/
}
div.gallery figure {
  margin: 0.5em;
  padding: 0.5em;
  /*background-color: lightgreen;*/
}
div.desc {
  box-sizing: border-box;
  padding: 15px;
  text-align: center;
  color: #FFFFFF;
}
/* width determines how many boxes per row */
.responsive {
  box-sizing: border-box;
  padding: 0;
  margin:0;
  float: left;
  width: 24.99999%;
  /*background-color: yellow;*/
}
@media only screen and (max-width: 1000px) {
  .responsive {
    width: 49.99999%;
  }
}
@media only screen and (max-width: 800px) {
  .responsive {
    width: 100%;
  }
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
