* {
    box-sizing: border-box;
}
img {
    max-width: 100%;
    height: auto;
}
.row:after {
    content: "";
    clear: both;
    display: table;
}
[class*="column-"] {
    float: left;
    padding: 10px;
    width: 100%;
}
@media only screen and (min-width: 600px) {
    .column-tablet-1 {width: 8.33%;}
    .column-tablet-2 {width: 16.66%;}
    .column-tablet-3 {width: 25%;}
    .column-tablet-4 {width: 33.33%;}
    .column-tablet-5 {width: 41.66%;}
    .column-tablet-6 {width: 50%;}
    .column-tablet-7 {width: 58.33%;}
    .column-tablet-8 {width: 66.66%;}
    .column-tablet-9 {width: 75%;}
    .column-tablet-10 {width: 83.33%;}
    .column-tablet-11 {width: 91.66%;}
    .column-tablet-12 {width: 100%;}
}
@media only screen and (min-width: 768px) {
    .column-fullscreen-1 {width: 8.33%;}
    .column-fullscreen-2 {width: 16.66%;}
    .column-fullscreen-3 {width: 25%;}
    .column-fullscreen-4 {width: 33.33%;}
    .column-fullscreen-5 {width: 41.66%;}
    .column-fullscreen-6 {width: 50%;}
    .column-fullscreen-7 {width: 58.33%;}
    .column-fullscreen-8 {width: 66.66%;}
    .column-fullscreen-9 {width: 75%;}
    .column-fullscreen-10 {width: 83.33%;}
    .column-fullscreen-11 {width: 91.66%;}
    .column-fullscreen-12 {width: 100%;}
}
html {
    font-family: Arial, Helvetica, sans-serif;
    color: #000099;
    background-color: #ffffff;
}
.header {
    background-color: #ffffff;
    color: #000099;
    text-align: center;
    padding: 15px;
}
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li a {
    display: block;
    text-decoration: none;
    padding: 8px;
    margin-bottom: 7px;
    background-color :#000099;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li:hover {
    background-color: #eff5fb;
    color: #ffffff;
}
.rightsidebar {
    background-color: #000099;
    padding: 15px;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.fullwidthblock {
    background-color: #eff5fb;
    color: #000099;
    text-align: center;
    font-size: 15px;
    padding: 15px;
}
#bottomdiv {
    position: relative;
    width: auto;
    margin: 0px auto 10px auto;
    font-size: 0.9em;
    text-align: center;
}
#footerdiv {
    position: relative;
    width: auto;
    margin: 30px auto 10px auto;
    font-size: 0.7em;
    text-align: center;
}

/* EVERYTHING BELOW IS FOR THE SLIDESHOW */

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* Position the "prev button" to the left */
.prev {
  left: 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.3);
}

/* Caption text */
.text {
  color: #ffffff;
  background-color: #ff6600;
  opacity: .8;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 3px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  margin: 0 2px;
  background-color: #ffff99;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #ff6600;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2.0s;
  animation-name: fade;
  animation-duration: 2.0;
}

@-webkit-keyframes fade {
  from {opacity: .2} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .2} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}