@charset "UTF-8";
.mainPage {
  background-color: #FFFFFF;
  font-family: Tahoma;
  font-size: 12pt;
}
h1, h2, h3 {
  color: darkblue;
}

.header {
  position: absolute;
  background-color: white;
  width: 100%;
  height: 100px;
}

.header .logo {
  position: absolute;
  background-color: #FFFFFF;
  top: 10px;
  left: 10%;
  width: 110px;
  background-color: #FFFFFF;
  z-index: 99;
  border-radius: 5px;
  border: solid 2px darkgray;
}

.header .header-navi {
  position: absolute;
  background-color: #FFFFFF;
  top: 0px;
  left: 5%;
  height: 50px;
  width: 90%;
  background-color: darkgray;
  border-bottom: solid 1px darkgray;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.header .header-navi ul,
.header .header-navi li {
  float: right;
}

.header .header-navi li {
  list-style-type: none;
  width: 120px;
  border-left: solid 4px #FFBB00;
  padding-left: 5px;

}

.header .header-navi a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.header .text {
  position: absolute;
  background-color: #FFFFFF;
  background-color: #FFFFFF;
  top: 20px;
  left: 200px;
}

.menu {
  position: absolute;
  background-color: #FFFFFF;
  width: 90%;
  top: 80px;
  height: 50px;
  left: 5%;
  border-bottom: solid 2px darkblue;
}

.menubar {
  position: relative;
  width: 40%;
  left: 30%;
  right: auto;
  background-color: #FFFFFF;
  top: 0px;
  height: 50px;
  z-index: 1;
}


.menu .menubar ul
{
  left: 0%;
  width: 100%;
  margin: 0%;
  padding:0%;
  color: darkblue;
}

.menu .menubar li {
  float: left;
  list-style-type: none;
  width: 33%;
  border: solid 1px darkgray;
  color: darkblue;
  text-align:center;

}

.menu .menubar a {
  text-decoration: none;
  color: darkblue;
  font-weight: bold;
  display: block;
}

.contentMain {
  position: absolute;
  top: 130px;
  left: 5%;
  width: 90%;
}

.page {
  position: absolute;
  left: 10%;
  top: 0px;
  width: 80%;
}
.page-header {
  position: absolute;
  left: 0%;
  top: 0px;
  width: 100%;
  text-align: center;
  font-size: 18pt;
}
/* Hide the text by default */
.home-text-slides {
  left: 0%;
  display: none;
  position: absolute;
  width:100%;
  height:60px;
  max-height: 60px;
  background-color: white;
  overflow: hidden;
}

.home-text-slides p {
  font-size: 14pt;
}


/* Slideshow container */
.home-slideshow-container {
  width: 100%;
  height: 600px;
  position: absolute;
  margin: auto;
  top: 140px;
  left: 0px;
  overflow: hidden;
}

/* Hide the images by default */
.home-slides {
  left: 0%;
  display: none;
  position: absolute;
  width:100%;
  height:600px;
  max-height: 600px;
  background-color: white;
  overflow: hidden;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: darkgray;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  border-radius: 3px 0 0 3px;
}

/* 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);
}

/* Caption text */
.caption_text {
  color: #004fd5;
  font-size: 16px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}


/* The dots/bullets/indicators */
.home-slide-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;
  text-align: center;
}

.active, .home-slide-dot:hover {
  background-color: #717171;
}

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

@keyframes fade {
  from {opacity: 0}
  to {opacity: 1}
}

.home-slides-out {
  right: 100%;
}
/* Sliding animation */
.slide-in-left {
  animation-name: slide-in-left;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@keyframes slide-in-left {
  0% {right: 100%}
  100% {right: 0%}
}

.slide-out-left {
  animation-name: slide-out-left;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@keyframes slide-out-left {
  0% {right: 0%}
  100% {right: 100%}
}

.slide-in-right {
  animation-name: slide-in-right;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@keyframes slide-in-right {
  0% {right: 0%}
  100% {right: 1000%}
}

.slide-out-right {
  animation-name: slide-out-right;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@keyframes slide-out-right {
  0% {right: 100%}
  100% {right: 0%}
}
