h1 { font-family: 'Verdana',Arial Narrow,Arial,Helvetica, sans-serif; font-size:20px; }
h2 { font-family: 'Verdana',Arial Narrow,Arial,Helvetica, sans-serif; font-size:14px; }
h3 { font-family: 'Verdana',Arial Narrow,Arial,Helvetica, sans-serif; font-size:10px; }
p  { font-family: 'Arial', Helvetica, sans-serif; }
ol { font-family: 'Arial', Helvetica, sans-serif; }
ul { font-family: 'Arial', Helvetica, sans-serif; }
li { font-family: 'Arial', Helvetica, sans-serif; }
td { font-family: 'Arial', Helvetica, sans-serif; font-size:8px; }
a:link { text-decoration: none; }
a:visted { text-decoration: bold; }
a:hover { text-decoration: underline; }
a:active { text-decoration: underline; }

.tooltip { display: inline; position: relative; }
.tooltip:hover:after 
{ 
	background: white;
	background: rgba(20,100,80,.8);
	border-radius: 5px;
	bottom: 26px;
	color: black;
	content: attr(title);
	left: 20%;
	padding: 5px 15px;
	position: absolute;
	z-index: 98;
	width: 300px;
}

.dropbtn 
{
	background-color: #FFFFFF;
	color: black;
	padding: 8px;
	font-size: 6px;
	border: none;
	cursor: pointer;
}

.dropdown
{
	position: relative;
	display: inline-block;
}

.dropdown-content
{
	display: none;
	position: absolute;
	font-size: 8px;
	background-color: #C5DFE7;
	min-width: 90px;
	box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);
	z-index: 1;
}

.dropdown-content a 
{
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}

.dropdown-content a:hover {background-color: white; }

.dropdown:hover .dropdown-content 
{
	display: block;
}

.dropdown:hover .dropbtn
{
	background-color: white;
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
  height:300px;
}

.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: 10px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 30;
  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: black;
  font-size: 10px;
  padding: 8px 12px;
  position: absolute;
  bottom: 100px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 10px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor:pointer;
  height: 13px;
  width: 13px;
  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;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

.collapsible
{
        background-color: #1E5680;
        color: white;
        cursor: pointer;
        padding: 18px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 12px;
}

.collapsible:after {
        content: '\002B';
        color: white;
        font-weight: bold;
        float: right;
        margin-left: 5px;
}

.active:after {
        content: "\2212";
}


.active, .collapsible:hover
{
        background-color: #C5DFE7;
}

.content
{
        padding: 0 18px;
        display: none;
        overflow: hidden;
        font-size: 12px;
        background-color: #f1f1f1;
}

