@import url('https://fonts.googleapis.com/css?family=Play');

/* CSS Document */
* {
    box-sizing: border-box;
}

/* BODY*/

/* ALL SCREENS*/


body {
	font-family: 'Play', sans-serif; 
	font-size: 14px; 
	font-weight: normal; 
	text-decoration: none; 
	color: #444444}
	
table {  
	font-family: 'Play', sans-serif; 
	font-size: 14px;  
	font-weight: normal; 
	text-decoration: none; 
	color: #444444}	

h3 {  
	font-family: 'Play', sans-serif; 
	font-size: 150%; 
	font-weight: bold; 
	text-decoration: none; 
	color: #000000}
h2 {  
	font-family: 'Play', sans-serif; 
	font-size: 125%; 
	font-weight: bold; 
	text-decoration: none; 
	color: #000000}
h1 {  
	font-family: 'Play', sans-serif; 
	font-size: 110%; 
	font-weight: bold; 
	text-decoration: none; 
	color: #444444}
	
input[type=text], [type=password], [type=number], [type=tel], [type=email]  {
    background-color: #FFCC33;
    border-radius: 5px;
    padding: 10px 12px;
    border: 1px solid ##0066FF;
    font-family: 'Play', sans-serif;
    font-size:110%;}  
	
select {
  	background-color: #FFCC00;
 	border-radius: 5px;
  	padding: 10px 12px;
  	border: 1px solid ##0066FF;
  	font-family: 'Play', sans-serif;
  	font-size:110%;
	cursor:pointer;
}
	
input[type="date"]{
 	background-color: #FFCC00;
  	border-radius: 5px;
  	padding: 10px 12px;;
 	border: 1px solid ##0066FF;
 	font-family: 'Play', sans-serif;
  	font-size:110%;
	cursor:pointer;
	}
	
input[type="radio"]{
    width:25px;
    height:25px;                      
    cursor:pointer;}
	 
input[type="checkbox"]{
    width:25px;
    height:25px;                      
    cursor:pointer;}
	
input[type=button], input[type=submit] {
    background-color: #4CAF50;
    border: none;
	border-radius: 5px;
    color: white;
    padding: 10px 12px;
    font-family: 'Play', sans-serif;
    font-size:150%;
    cursor: pointer;}

input[type=reset] {
    background-color: #FF6600;
    border: none;
	border-radius: 5px;
    color: white;
    padding: 10px 12px;
    font-family: 'Play', sans-serif;
    font-size:150%;
    cursor: pointer;}
	
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}
.icon-bar {
    width: 100%;
    background-color: #FC0;
    overflow: auto;
}

/* END GENERAL */

/* HEADER */
.header {
    background-color: #ffffff;
    padding: 5px;
    text-align: left;
}
/* END HEADER */

/* NAVBAR */
.topnav {
    overflow: hidden;
    background-color: #5F5F5F;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 14px;
}

/* Change color on hover */
.topnav a:hover {
    background-color: orange;
    color: black;
}

.active {
  background-color: #FF6600;
  color: white;
}


.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

}

/* END NAV * /

/* SLIDE SHOW */

* {box-sizing:border-box}

.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 35%;
  width: auto;
  padding: 8px;
  margin-top: -22px;
  color: #FF6600;
  font-weight: bold;
  font-size: 32px;
  transition: 4.0s ease;
  border-radius: 0 3px 3px 0;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  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: #FFFFFF;
}

/* Caption text */
.text {
  color: #000000;
  font-size: 15px;
  font-weight:bold;
  padding: 4px 6px;
  position: absolute;
  background:#FFFFFF;
  bottom: 4px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  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}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next,.text {font-size: 11px}
}
/* END SLIDE SHOW */

/* MAIN CONTENT */

/* Create two unequal columns that floats next to each other */
.column {
    float: left;
    padding: 10px;
}

/* Right column */
.column.side {
    width: 25%;
}

/* Middle column */
.column.left {
    width: 75%;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .column.left, .column.side {
        width: 100%;
    }
}

/* END MAIN CONTENT */

/* FOOTER */

.footer {
    background-color: #ff6600;
    text-align: center;
    padding: 10px;
	color: #FFFFFF;
	font-size: 14px; 
	font-weight: normal; 
	text-decoration: none;
}

/* END FOOTER */