/* Site Default Base Style */
body {
	font-family: Tahoma, Geneva, Verdana, sans-serif;	
    font-size: 14px;
	color: #ffffff;
	text-align: center;
	background-color: #000000;
}
h1 {
	font-size: 22px;
	color: #f1c40f;
}
h2 {
	font-size: 18px;
	color: #000000;
}
a {
  color: #007acc;
  text-decoration: none;
}
a:hover {
  color: #f1c40f;
}

/* Alert Bar Style */
.alert {
	position: fixed;
	top: 65px;
    right: 10px;
    /* transform: translate(-50%, -50%); */
    max-width: 50%;
	padding: 5px 5px;
	border-radius: 10px;
    background-color: #f8f8ba;
    color: #000000;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
}
/* Alert Bar Types */
.alert.red {background-color: #f44336; color: #ffffff;}
.alert.amber {background-color: #ff9933; color: #ffffff;}
.alert.green {background-color: #4CAF50; color: #ffffff;}
.alert.blue {background-color: #2196F3; color: #ffffff;}

/* Navigation Bar Style */
.topnav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: #000000;
}
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 16px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
}
.active {
  background-color: #f1c40f;
}
.topnav .icon {
  display: none;
}
.dropdown {
  float: left;
  overflow: hidden;
}
.dropdown .dropbtn {
  font-size: 16px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.4);
  z-index: 1;
}
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}
.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* Slideshow container */
.mySlides {display: none}
img {vertical-align: middle;}
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}
.body-content {margin: 65px 5%;}
.container {
	position: absolute;
	width: 90%;
	margin: 0px;
}
.container > div {
	display: inline-block;
	padding: 5px;
	margin: 5px;
	background: #f2f2f2;
	color: #000000;
	text-decoration: none;
	font-size: 14px;
	border: 1px solid transparent;
	border-radius: 5px;
	text-align: left;
	height: auto;
    width: 250px;
	position: relative;
}
.container img {
	float: left;
	margin: 5px;
	margin-right: 15px;
	border-radius: 5px;
}
/* Slideshow Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 10px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* Slideshow dots/indicators */
.dot {
  cursor: pointer;
  height: 5px;
  width: 5px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover  {
  background-color: #f1c40f;
}
/* Slideshow Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
  animation-timing-function: linear;
}
@keyframes fade {
  from {opacity: .2} 
  to {opacity: 1}
}

/* On smaller screens */
@media screen and (max-width: 800px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}
@media screen and (max-width: 800px) {
  .topnav.responsive {position: fixed;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}
