    
/* Reset */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, em, img, samp, strong, b, u, i, center,
dl, dt, dd, ol, ul, li, table, caption, tbody,
figure, figcaption, footer, header, 
menu, nav, section, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
    font-family: nimbus-sans, sans-serif;
}

* {
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
  margin: 0;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  font-family: nimbus-sans, Arial, sans-serif;
  text-align: left;
  padding: 5px 1px; 
  margin-bottom: 5px;
}

.caption {
  display: none;
}


.caption.active {
  display: block;
}

.source {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.8em;
  font-weight: 200;
  color: #CCC;
  margin-left: 10px;
}

.gallery-thumbnails:after {
  content: "";
  display: table;
  clear: both;
}

/* thumbnail columns */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.thumbnail {
  display: block;
  opacity: 0.6;
  width: 98%;
  height: 98%;
  margin-bottom: 3px;
  overflow: hidden;
}

.active,
.thumbnail:hover {
  opacity: 1;
}

/* -------------------------------------------- */

@media all and (max-width: 499px) {

  .thumbnail {
    margin-bottom: 2px;
  }  

}
/* -------------------------------------------- */

@media all and (max-width: 299px) {

  .thumbnail {
    margin-bottom: 1px;
  }  

}