header, section, footer, aside, nav, main, article, figure {display:block;} /* New HTML5 elements in older browsers */

body {max-width:1280px;font-family:courier;}

h1,h2,h3 {color:black;clear:both;font-family:courier;}

a {text-decoration:none;color:blue;}
a:hover {text-decoration:underline;}

table, th, td {
  border: 1px solid black;
}

footer {padding:10px;clear:both;}
footer a {text-decoration:none;float:right;}
footer a:hover {text-decoration:underline;}

.web_logo {
    margin-top:20px;
    height:auto;
    width:100%;
}

.link_logo {
    width:240px;
    float:left;
    border:solid 1px #A4AA34;
    margin:2px;
}

.link_logo img {
    padding-left:20px;
    width:160px;
    height:120px;
}

.link_logo p {margin:0px 20px;}

/* Forms */
input[type=text], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  margin-bottom:5px;
}
input[type=submit] {
  background-color: #4CAF50;
  color: white;
  padding: 12px 20px;
  margin-top: 5px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  float: right;
}
label {
  padding: 12px 12px 12px 0;
  display: inline-block;
  font-weight:bold;
}



/* Slideshows */
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 600px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.slideshow1 {display: none;}
.slideshow2 {display: none;}
.slideshow3 {display: none;}
.slideshow4 {display: none;}
.slideshow5 {display: none;}
.slideshow6 {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: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* 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: rgba(0,0,0,0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot1, .dot2, .dot3, .dot4, .dot5, .dot6 {
  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, .dot1:hover, .dot2:hover, .dot3:hover, .dot4:hover, .dot5:hover, .dot6:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}