/* Dropdown Button */
.dropbtn {
  background-color: white;
  color: #025AFF;
  padding: 0px;
  font-size: 16px;
  border: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #025AFF;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  background-color: #025AFF;
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #025AFF;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: white;}


BODY {
font-family: Arial;
color: #0559A7;
font-size: 20px;
background-color:white;
}


.menulink A {
font-family: Arial;
color: white;
font-weight: bold;
font-size: 13px;
border-top;#FFF solid 1 px;
border-right:#FFF solid 1 px;
padding:5px;
text-decoration: none;
}

.menulink A:hover {
font-family: Arial;
font-weight: bold;
color: #fe0002;
font-size: 13px;
border-top;#FFF solid 1 px;
border-right:#FFF solid 1 px;
padding:5px;
text-decoration: none;
}



*/additional classes*/

.smalltext P {
font-family: Arial;
color: #0559A7;
font-weight: bold;
font-size: 13px;
border-top;#FFF solid 1 px;
border-right:#FFF solid 1 px;
padding:5px;
text-decoration: none;
}



.bodylink A {
font-family: Arial;
color: #0559A7;
font-weight: bold;
font-size: 13px;
border-top;#FFF solid 1 px;
border-right:#FFF solid 1 px;
padding:5px;
text-decoration: none;
}

.bodylink A:hover {
font-family: Arial;
font-weight: bold;
color: #FE0002;
font-size: 13px;
border-top;#FFF solid 1 px;
border-right:#FFF solid 1 px;
padding:5px;
text-decoration: none;
}

.menuw LI {
	list-style-type: disc;
	color: white;
}

video {
background-color: transparent !important;
}


<style>
* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1280px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/6 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot2 {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  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: 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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}
</style>

