* {box-sizing: border-box;}


.mySlides {
	display: none;
	height: 600px;
	justify-content: center;
	align-items: center;
}

img.slide {
	height: auto;
	border: 1px solid #888; 
	padding: 4px; 
}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  height: 600px;
  position: relative;
}


/* Caption text */
.text {
  color: #a2a2a2;
  font-size: 10px;
  padding: 8px 12px;
  position: absolute;
  bottom: 2px;
  width: 100%;
  text-align: center;
}

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

.dotindex {
	text-align: center;
	margin-top: 10px;
}

/* The dots/bullets/indicators */
.dot {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}


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

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  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 {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.row {
  position: absolute;
  bottom: 2px;
  width: 100%;
  margin: auto;
}

/* Six columns side by side */
.column {
  /*float: left;*/
  display: inline;
  width: 50px;
  height: 50px;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
  border: solid #121212;
  border-width: 0 1px;
}

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


/* page index */

.indexRow {
	display: flex;
	width: 100%;
	height: 50px;
	justify-content: center;
	align-items: center;
}

.pageUp {
	cursor: pointer;
	height: auto;
	width: 5%;
	float: right;
}

.pageDown {
	cursor: pointer;
	height: auto;
	width: 5%;
	float: left;
}

.pageIndex {
	width: 90%;
  	display : none;
}

