﻿body {
	font-family: "Trebuchet MS", Helvetica, sans-serif;
	color: black;
	font-weight: normal;
	font-variant: normal;
	font-size: 1em;
	text-align: left;
	line-height: 1.6;
	max-width:1440px;
    margin: auto;
	text-decoration: none;
	padding: 10px;
}

h1 {
	font-weight: bold;
	font-size: 1.5em;
	line-height: 150%;
}
h2 {
	font-weight: bold;
	font-size: 1.2em;
	line-height: 100%;
}

footer {
	font-size: xx-small;
	font-weight: normal;
	font-variant: normal;
    max-width:1440px;
    margin: auto;
	color: #660066;
}

.banner {
	font-size: 2em;
	font-weight: bold;
	line-height: 200%;
	text-align: center;
	background-color: #7ACDDA;
}

.text_red {
	color: #FF0000;
}


/* Top menu, buttons, etc */
.topnav {
  overflow: hidden;
  background-color: #FEC969;
 }

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

.topnav a:hover {
  background-color: #F9D8A3;
  color: white;
}

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

.topnav .icon {
  display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home").
Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon.
This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}


/* CSS for Slideshow Gallery */
{
  box-sizing: border-box;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* 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:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

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


/* CSS for new photo gallary
.gallary_row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create four equal columns that sits next to each other
.gallary_column {
  flex: 25%;
  max-width: 24%;
  padding: 0 4px;
}

.gallary_column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}

/* Responsive layout - makes a two column-layout instead of four columns
@media screen and (max-width: 800px) {
  .gallary_column {
    flex: 50%;
    max-width: 50%;
  }
}

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

