a {color: #FFFF00;}

/* Add a black background color to the top navigation */
.topnav {
  background-color: #333;
  overflow: hidden;
  //position: fixed;	/* Set the navbar to fixed position */
  //top: 0;		/* Position the navbar at the top of the page */
  //overflow: visible !important;
  width: 100%;		/* Full width */
  z-index: 1;
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  top: 0;
  overflow: visible !important;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  display: block;
  color: #F2F2F2;
  text-align: center;
  font-size: 17px;
  padding: 14px 16px;      /* 14 pt vertical/height , 16 pt horizontal/width */
  text-decoration: none;
}

/* Change the color of links on hover */
.topnav a:hover , .dropdown:hover .dropbtn {
  background-color: #DDD;
  color: black;
}

/* Add an active class to highlight the current page */
.active {
  background-color: #4CAF50;
  color: white;
}

/* The dropdown container */
.dropdown {
  float: left;
  //overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  border: none;
  outline: none;
  color: white;
  font-size: 17px;
  padding: 14px 16px;      /* 14 pt vertical/height , 16 pt horizontal/width */
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #F9F9F9;
  min-width: 120px;
  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-top: 9px;
  padding-bottom: 9px;
  text-decoration: none;
  display: block;
  text-align: left;
}

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

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


/* Responsive Web Design Media Queries for the menu bar items*/
@media only screen and (max-width: 1060px) {
	.dropdown-content {min-width: 110px;}
      	.dropdown .dropbtn, .dropdown-content a, .topnav a {font-size: 15px; padding: 16px 16px;}
      	.dropdown-content a {padding-top: 9px; padding-bottom: 9px;}
}

@media only screen and (max-width: 860px) {
	.dropdown-content {min-width: 89px;}
	.dropdown .dropbtn, .dropdown-content a, .topnav a {font-size: 14px; padding: 16.5px 8px;}
      	.dropdown-content a {padding-top: 9px; padding-bottom: 9px;}
}

/* Outer div */
.outer-content {
  padding: 20px 0px 20px 0px;
  text-align: center;
}

/* Page content in the inner div */
.inner-content {
  padding: 15px;
  max-width: 1400px;
  margin: 0 auto;
  text-align: left;
}

/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
/* Note: 75.5 is the heigth of the navbar + original top padding (20) on the outer-content */ 
.sticky + .outer-content {
  padding-top: 75.5px;
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 9px 18px 9px 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordion-active, .accordion:hover {
  background-color: #4CAF50;
}

.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.accordion-active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.8s ease-out;
}

/* Container holding the image and the text */
.img-container {
  position: relative;
  text-align: center;
  display: inline-block; /* Make the width of box same as image */
  vertical-align: baseline
}

/* Bottom left text */
.bottom-left {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

/* Top left text */
.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
}

/* Top center text */
.top-center {
  position: absolute;
  top: 18px;
  left: 0px;
  right: 0px;
  text-align: center;
}

/* Tooltip container */
.tooltip {
  position: relative;
  //display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 700px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
 
  /* Position the tooltip text - see examples below! */
  top: 100%;
  left: 50%;
  /* Use half of the width (120/2 = 60), to center the tooltip */ 
  margin-left: -350px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: opacity 1s;
} 

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  opacity: 1;
  visibility: visible;
}

.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  bottom: 100%;  /* At the top of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent transparent black transparent;
}

/* Slide Captions for the slick slides */
.slick-slide {
  position: relative;
  display: inline-block; /* Make the width of box same as image */
  vertical-align: baseline
}

.slick-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px;
  //min-height: 40px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.25);
  text-align: center;
  font-weight: bold;
  font-size: 36px; 
  //color: #EA191E;
  color: black;
  z-index: 50;
}

/* Responsive Web Design Media Queries */
@media only screen and (max-width: 1000px) {
  .slick-caption {font-size: 24px;}
}

@media only screen and (max-width: 700px) {
  .slick-caption {font-size: 16px;}
}

