@charset "utf-8";
/* CSS Document */
html, body {
	height: 100%;
}
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #081D2D;
	position: relative;
}
.fa {
    width: 70px;
    text-decoration: none;
	padding: 0px;
	float: right;
}
.pink {
	color: #CBAEB2;
}
.pink:hover {
	color: #FFFFFF;
}
#topnav {
	height: 40px; 
	top: 0; 
	margin: 0;
	width: 100%;
	padding-top: 15px;
	position: relative;
}
#bottomnav {
	height: 50px; 
	width: 100%;
	position: fixed;
	bottom: 0px;
	left: 0px;
	text-align: right;
	padding: 0px;
    text-decoration:none;
	background-color: #081D2D;
}
h1 {
	font-family: 'Sacramento', cursive;
	font-weight: 5;
	font-size: 50px;
	color: #FFFFFF;
	margin: auto;
}
h1, h4 {
	display: inline;
}
h2, h5 {
	display: inline-block;
	margin: auto;
	white-space: nowrap;
}
h2 {
	font-family: 'Open Sans Condensed', sans-serif;
	color: #FFFFFF;
	font-weight: 10;
	font-size: 50px;
}

h3 {
	font-family: 'Open Sans Condensed', sans-serif;
	color: #FFFFFF;
	font-weight: 10;
	font-size: 50px;
	margin-top: 0;
}
h4 {
	font-family: 'Open Sans Condensed', sans-serif;
	color: #CBAEB2;
	font-weight: 10;
	font-size: 30px;
	margin-top: 0;
}
h5 {
	font-family: goudy-old-style, serif;
	font-weight: 400;
	font-style: italic;
	font-size: 130px;
	margin: -10px;
	color: #FFFFFF;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: 'Open Sans Condensed', sans-serif;
  color: #FFFFFF;
  font-weight: 10;
  font-size: 20px;
}
a {
  color: #FFFFFF;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  color: #CBAEB2;
}
.annotate {
  max-width: 100%;
    width: 100%;
    height: 400px;
	object-fit: contain;
	padding: 10px;
}
.img-fluid {
  max-width: 100%;
    width: 100%;
    height: 250px;
	object-fit: contain;
	padding: 20px;
	opacity: 0.8;
	transition: transform .5s;
}
.img-fluid:hover {
    position:relative;
    display:block;
    z-index:999;
	opacity: 1;
}
.container{
	position: relative;
	margin-bottom: 40px;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  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);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  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: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}