/* CSS for Props Page */
body {
	text-align: center;
	background-color: #DCDCDC;
	background-color: gainsboro;
  }

 h1 {
    text-align: center;
    font-family: "Arial";
    font-weight: bold;
    color: yellow;
 }

 h2 {
 	font-family: "Arial";
 	font-size: 16pt;
 	font-weight: bold;
 	font-style: italic;
 	text-shadow: 2px 2px rgba(0,0,0,0.2);
 }
 h3 {
 	font-family: "Arial";
 	font-size: 12pt;
 	font-style: italic;
 }

  
#topbar {
	width: 100%;
	height: 17px;
	border-radius: 5px 5px 0px 0px; 
	background-color: #000000;
}

#Header {
	border-radius: 5px 5px 0px 0px; 
	width: 100%;
	height: 100px;
	background-color: maroon;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  

}

#Container {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
 } 

#MenuBar {
	width: 100%;
	height: 17px;
	background-color: #000000;
	border-radius: 0px 0px 5px 5px; 
}

#Title {
	margin: 10px auto 0px auto;
	padding: 5px;
	width: 100%;
	clear: both;
	
}

/* Column 1  */
#Box1 {
	width: 30%;
	background-color: #FFD700;
	float: left;
	margin: 5px;
	text-align: left;
	border: 3px solid;
	padding: 10px 10px 10px 10px;
	border-radius: 5px 5px 5px 5px;
	 box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}


#Box3 {
	width: 30%;
	float: left;
	background-color: #FFD700;
	margin: 5px;
	border: 3px solid;
	clear: right;
	padding: 10px 10px 10px 10px;
	border-radius: 5px 5px 5px 5px;
	text-decoration: none;
	text-align: center;
	font-size: 10pt;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

/* Column 3B  */
#Contact-Info {
	width: 30%;
	float: left;
	margin: 5px;
}


#Footer {
	width: 100%;
	clear: both;
	margin: 5px;
	font-size: 8pt;
	color: "#666666";
  	text-decoration: none;
}

/* NavBar, modified from W3Schools */
.navbar {
    overflow: hidden;
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
     border-radius: 0px 0px 5px 5px; 
}

.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    cursor: pointer;
    font-size: 16px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
    background-color: #FFD700;
    color: black;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #FFD700;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.show {
    display: block;
}

/* Slideshow, modified from W3Schools */

* {box-sizing:border-box}
body {font-family: Verdana, sans-serif;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  height: 450px;
  background: linear-gradient(to right, #DCDCDC, #b3b3b3, #DCDCDC);
  position: relative;
  margin: auto;
  margin-top: 90px;
}

/* 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;
}

/* 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;
  margin-top: 7px;
  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;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

