*{
  box-sizing: border-box;
  margin: 0px;
}
.mySlides 
{
	display: none;
}

img {vertical-align: middle;}

body {
  font-family: Arial, Helvetica, sans-serif;
  padding: 0px;
  padding-bottom: 30px;
  margin: 0px;
}


/* Slideshow container */

.slideshow-container {

  max-width: 850px;
  
  position: relative;
  
  margin: auto;
}


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

.boldtext {
  color: DarkGoldenRod;
  font-weight: bold;
}


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

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

.active {
  background-color: #1858cd;
}


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


/* Style the header */
.header {
  border: solid transparent;
  border-width: 0 0 10px 0;
  border-image-source: url(border.jpg);
  border-image-outset: 0px;
  border-image-repeat: repeat;
  border-image-slice: 30%;

  background-color: #f1f1f1;
  padding: 0px;
  text-align: center;
  /*font-size: 20px;*/
}

/* Container for flexboxes */
.row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: row;
    flex-direction: row;
  padding: 0px;
}

/* Create three unequal columns that sits next to each other */
.column {
  padding: 0px;
  /* Should be removed. Only for demonstration */
}

/* Left and right column */
.column.side {
   -webkit-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

/* Middle column */
.column.middle {
  -webkit-flex: 6;
  -ms-flex: 6;
  flex: 6;
}

/* Middle column */
.column.two {
  -webkit-flex: 3;
  -ms-flex: 3;
  flex: 3;
}

/* Style the footer */
.footer {
  border: solid transparent;
  border-width: 10px 0 0 0;
  border-image-source: url(border.jpg);
  border-image-outset: 0px;
  border-image-repeat: repeat;
  border-image-slice: 30%;
  
  padding: 0px;
  background-color: white;
  text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
  .row {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #103a89;
}

li {
  float: right;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 5px 15px;
  text-decoration: none;
}

li a:hover {
  background-color: #1858cd;
}