
	h1 {color:MediumBlue;font-size: 8vw;}
	h2 {color:MediumBlue;font-size: 5vw;}
	h3 {color:MediumBlue;font-size: 3vw;}
/* Slideshow container */
.slideshow {
  width: 80%;
  max-width: 100%;
/*  height: 45vw;*/
  position: relative;
  margin-left: 5%;
}

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

/* Caption text */
.text {
  color: yellow;
  background-color: rgb(112, 128, 144, 0.5); /*SlateGray*/
  font-size: 2vw;
  padding: 0.2em;
  margin-left: 60vw;
  position: absolute;
  bottom: 25%;
  text-align: right;
}

.text4 {
  color: black;
  font-family: Arial, Helvetica, sans-serif
  font-size: 2vw;
  padding: 1% 5%;
  position: absolute;
  bottom: 10%;
  width: 55%;
  text-align: left;
}

/* Number text (1/3 etc)  color: #f2f2f2;*/
.numbertext {
  color: yellow;
  background-color: rgb(112, 128, 144, 0.3); /*SlateGray*/
  font-size: 2vw;
  margin-left: 2vw;
  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: 2vw;
  width: 2vw;
  margin: 1% 3.5%;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}

/* 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}
}

.footer {position: relative; bottom: 1%; left: 90%; width: 75%; color:White; font-size:1vw;}
.empty0 {left:1% ; height: 10%;}
.empty1 {left:1% ; width: 55%; font-size:10vw;}
.empty5 {left:1% ; width: 65%; font-size:35vw;}
.emptys {margin: auto; width:95%; font-size:0.1em;}
.txtc { width:80%; text-align:center;}
.center {margin: auto; width: 90%; border: 1px; padding: 1%; }
.center9 {margin: auto; width: 90%; border: 1px solid PaleGreen; padding: 1%; }
.center5 {margin: auto; width: 50%;  border:1px solid PaleGreen; padding: 1%;}
.left9 {position: relative; left: 1%; width: 95%; border: 1px solid PaleGreen; padding: 1%;}
.left8 {position: relative; left: 25%; width: 80%; border: 1px solid PaleGreen; padding: 1%;}
.left7 {position: relative; left: 50%; width: 70%; border: 1px solid PaleGreen; padding: 1%;}
.left1 {position: relative; left: 3%; width: 80%; border: 1px; color:red; padding: 1%;}
.right9 {position: relative; right: 40%; width: 70%; border: 1px solid PaleGreen; padding: 1%;}
.emp {font-size:2vw;}
.launch {position: relative; bottom: 5%; background-color: LightGray; left: 1%; width: 43vw; font-size:1vw; padding: 0;}
.mess {margin: auto; width: 20%; border: 1px solid gold; font-size:100%; color:yellow;}

/* Navbar container */
.navbar {overflow: hidden; width:90%; margin:auto; background-color: darkslateblue;font-family: Arial;}

/* Links inside the navbar */
.navbar a {float: left; font-size: 2vw; color: yellow; text-align: center; padding: 3px 4px; text-decoration: none;}
  /*padding: 14px 16px;*/
  
/* The dropdown container */
.dropdown {float: left; overflow: hidden;}

/* Dropdown button */
.dropdown .dropbtn {font-size: 2vw; border: none; outline: none; color: white; padding: 3px 4px; 
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a darker background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn { background-color: mediumblue;}

/* Dropdown content (hidden by default) */
.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;
}

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

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {background-color: lightblue;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

