	
	h1 {color:MediumBlue;font-size: 10vw;}
	h2 {color:MediumBlue;font-size: 8vw;}
	h3 {color:MediumBlue;font-size: 5vw;}
	
	.footer {position: relative; bottom: 1%; left: 90%; width: 75%; color:White; font-size:1vw;}
	.empty0 {left:1% ; height: 18%;}
	.empty1 {left:1% ; width: 45%; font-size:15vw;}
	.empty5 {left:1% ; width: 65%; font-size:65vw;}
	.emptys {margin: auto; width:95%; font-size:5vw;}
	.center {margin: auto; width: 90%; border: 1px; font-size:3vw; padding: 1%; }
	.center9 {margin: auto; width: 90%; border: 1px solid PaleGreen; font-size:3vw; padding: 1%; }
	.center5 {margin: auto; width: 50%;  border:1px solid PaleGreen; font-size:3vw; padding: 1%;}
	.left9 {position: relative; left: 1%; width: 95%; border: 1px solid PaleGreen; font-size:3vw; padding: 1%;}
	.left8 {position: relative; left: 25%; width: 80%; border: 1px solid PaleGreen; font-size:3vw; padding: 1%;}
	.left7 {position: relative; left: 50%; width: 73%; border: 1px solid PaleGreen; font-size:3vw; padding: 1%;}
	.left1 {position: relative; left: 3%; width: 100%; border: 1px; font-size:2vw; color:palegreen; padding: 1%;}
	.right9 {position: relative; right: 40%; width: 90%; border: 1px solid PaleGreen; font-size:3vw; padding: 1%;}
	.emp {font-size:5vw;}
	.launch {position: relative; bottom: 5%; background-color: Gainsboro; left: 1%; width: 71vw; font-size:2vw; padding: 0%;}
	.mess {margin: auto; width: 90%; border: 1px solid green; font-size:3vw; color: palegreen;}
	/* Slideshow container */
	.slideshow {
	  width: 90vw;
	  height: 70vw;
	  position: relative;
	  margin: auto;
	}

	/* Slide */
	.slide {
	  width: 100%;
	  position: relative;
	  margin: auto;
	}

	/* Caption text */
	.text {
	  /*color: lightgray; */
	  color: palegreen; 
	  background-color: rgb(112, 128, 144, 0.4); /*SlateGray*/
	  font-family: "New Century Schoolbook", serif;
	  font-size: 3vw;
	  margin-left: 65vw;
	  padding: 1%;
	  position: absolute;
	  bottom: 15%;
	  text-align: right;
	}

	.text4 {
	  /*color: black;*/
	  color: palegreen;
	  font-family: "New Century Schoolbook", serif;
	  font-size: 3vw;
	  padding: 0.2em;
	  position: absolute;
	  bottom: 5%;
	  width: 80%;
	  text-align: left;
	}

	/* Number text (1/3 etc)  color: #f2f2f2;*/
	.numbertext {
	  /*color: lightgray; /* rbga(211, 211, 211, 100)*/
	  /* rgb(112, 128, 144, 0.8); /*SlateGray*/
	  /* rgb(135, 206, 235, 0.7); /*SkyBlue*/
	  /* rgb(192, 192, 192, 0.5);/* Silver*/
	  /* rgb(211, 211, 211, 0.5); /* LightGray*/
	  /* rgb(248, 248, 255, 0.5); /* GhostWhite*/
	  color: palegreen; /* rgb(152, 251, 152, 1.0); */
	  background-color: rgb(112, 128, 144, 0.6); /*SlateGray*/
	  margin-left: 3vw;
	  font-size: 3vw;
	  padding: 0.2em;
	  position: absolute;
	  top: 5%;
	}

	/* The containing where the dots live */
	.dline {
	  float: left; 
	  width: 100%; 
	  text-align: center; 
	  margin:auto; 
	  border: 0px solid White; 
	  padding: 1%;
	}

	/* The dots/bullets/indicators */
	.dot {
	  height: 3vw;
	  width: 3vw;
	  margin: 1% 3%;
	  background-color: lightgray;
	  border-radius: 50%;
	  display: inline-block;
	  transition: background-color 0.6s ease;
	}
	.active {
	  background-color: dimgray;
	}

	/* Fading animation */
	.fade {
	  -webkit-animation-name: fade;
	  -webkit-animation-duration: 2.5s;
	  animation-name: fade;
	  animation-duration: 2.5s;
	}
	
	@-webkit-keyframes fade {
	  from {opacity: .4} 
	  to {opacity: 1}
	}	
	
	@keyframes fade {
	  from {opacity: .4} 
	  to {opacity: 1}
	}

.navbar { overflow: hidden; width:90%; margin-left: 4vw; background-color: darkslateblue;}

.navbar a {
  float: left;
  font-size: 3vw;
  color: palegreen;
  text-align: center;
  padding: 3px 4px;
  text-decoration: none;
}

.dropdown {float: left; overflow: hidden;}

.dropdown .dropbtn {
  font-size: 3vw;  
  border: none;
  outline: none;
  color: white;
  padding: 3px 4px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn { background-color: mediumblue;}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: aliceblue;
  width:40vw;
  min-width: 20vw;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  /*padding: 12px 16px;*/
  padding: 3px 4px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {background-color: lightblue;}

.dropdown:hover .dropdown-content {display: block;}

