.flex-container {
   display: flex;
   flex-direction: column;
   flex-wrap: wrap;
   align-items: center;
   max-width: 940px;
   margin: auto;
   padding-left: 20px;
   padding-right: 20px;
   padding-bottom: 100%;
   background-color: white;
   color: #176c87;
}
.logo img{
   width: 100%;
}
.navigation {
   width: 100%;
}
.slider {
   width: 100%;
}
.content {
   width: 100%;
}
.footer {
   width: 100%;
}
table, th, td {
  border: 1px solid gray;
  border-collapse: collapse;
  color: #176c87;
  border-color: lightblue;
}
.hideborder {
border-right-style:hidden;
}
body {
  background-color: lightblue;
  margin: 8px;
  font-family: Arial, Helvetica, sans-serif;
}
a:hover {
  background-color: lightyellow;
}
a:link {
  color: #176c87;
}
a:visited {
  color: #176c87;
}

/* NAVIGATION MENU */
.topnav {
  overflow: hidden;
  background-color: #167a9a;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: lightyellow;
  color: black;
}

.topnav a.active {
  background-color: #3d97b4;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 800px) {
.topnav a:not(:first-child) {display: none;}
.topnav a.icon {
   float: right;
   display: block;
   }
}

@media screen and (max-width: 800px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* SLIDESHOW */

.fling-minislide {width:100%; height:0px; padding-bottom: 30%; overflow:hidden; position:relative; }
.fling-minislide img{ position:absolute; animation:fling-minislide 20s infinite; opacity:0; width: 100%; height: auto;}

@keyframes fling-minislide {25%{opacity:1;} 40%{opacity:0;}}
.fling-minislide img:nth-child(4){animation-delay:0s;}
.fling-minislide img:nth-child(3){animation-delay:5s;}
.fling-minislide img:nth-child(2){animation-delay:10s;}
.fling-minislide img:nth-child(1){animation-delay:15s;}

/* TOOLTIP */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  font-size: medium;
  background-color: lightyellow;
  border-style: solid;
  border-color: #167a9a;
  color: #167a9a;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}


/* TWO COLUMNS SIDE BY SIDE, COLLAPSE TO ONE IN MOBILE VIEW */
* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;

}

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

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
   .column {
   width: 100%;
  }
}

/* SVG */
path:hover { /*hover*/
   fill: #d0d071 !important
}
svg {
   width: 100%;
   height: auto;
   left: 0px;
   top: 0px;
}
section {
   box-sizing: border-box;
   border: 1px solid blue;
   width: 100%;
   float: left;
}
.left {
   float: left;
   position: absolute;
   top: 75px;
   left: 35px;
   z-index: -1;
}
.right {
   float: right;
   position: absolute;
   top: 250px;
   right: 35px;
   z-index: -1;
}

/* GOOGLE ADSENSE */
.adsense { width: 320px; height: 50px; margin: auto;}
@media(min-width: 500px) { .adsense { width: 468px; height: 60px; } }
@media(min-width: 800px) { .adsense { width: 728px; height: 90px; } }

.adsense2 { width: 320px; height: 200px; margin: auto;}
@media(min-width: 500px) { .adsense2 { width: 500px; height: 100px; } }
@media(min-width: 800px) { .adsense2 { width: 800px; height: 200px; } }

