/* Scrollbar width */
::-webkit-scrollbar {
  width: 10px;
}

/* Scrollbar Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Scrollbar Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Topnavigagition Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
  position: fixed;
  top: 0px;
  width: 100%;
}

/* Topnavigagition Style the links inside the navigation bar */
.topnav p {
  width: 130px;
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-family: Verdana;
}

/* Topnavigagition Change the color of links on hover */
.topnav p:hover {
  background-color: white;
  color: darkslategray;
  font-weight: bold;
}

/* Topnavigagition Add a color to the active/current link */
.topnav p.active {
  background-color: red;
  color: white;
  font-weight: bold;
}

/*Topnavigation Infopane*/
.topnav p.infopane {
  float: right;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-family: Verdana;
}

/*Division of page into panes*/
.container {
  width: 100%;
  height: 100%;
  padding: 0px;
}

.leftpane {
    text-align: center;
    width: 50%;
    height: auto%;
    float: left;
}

.rightpane {
  text-align: center;
  width: 50%;
  height: auto%;
  /*position: relative;*/
  float: right;
}

.toppane {
  text-align: center;
  width: 100%;
  height: auto;
  position: static;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/*Text format*/
.title {
  color: white;
  font-family: Verdana;
  font-weight: bold;
}

.paragraph {
  color: white;
  font-family: Verdana;
  font-weight: normal;
  text-align: left;
  padding-left: 50px;
  padding-right: 20px;
}

.imgtitle {
  color: white;
  font-family: Verdana;
  font-weight: bold;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}

/* Foto slides*/
.mySlides {display: none}
img {vertical-align: middle; width:auto; height: 500px;}

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

/* Random slide */
.random {
  color: white;
  font-family: Verdana;
  font-weight: normal;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: relative;
  top: -150px;
  left: -400px;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 3px;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  left: 400px;
}

/* 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);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: relative;
  bottom: 8px;
  width: 100%;
  text-align: center;
  font-family: Verdana;
}

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

.active, .dot:hover {
  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) {
  .prev, .next,.text {font-size: 11px}
}
