/*
 *
 * Version: 1.2.0 (20190215)
 * Requires:
 *
 * Copyright &copy; 2015-2024 Tod W. McNamara. All Rights Reserved
 *
 *
 */
@charset "utf-8";

/* new for video slide show */
* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
/*	left: 1%;
  	width:90%;*/
  	height:100%;
  	position:relative;
  	/*display:none;*/
  	margin:auto;
}
.slide {
  z-index: 1;
  position: relative;
}
/* Next & previous buttons */
.prev, .next {
  z-index: 2;
  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;
}
/* Position the "prev button" to the left */
.prev {
  left: 0;
  margin-left: 2%;
  border-radius: 5% 5% 5% 5%;
  display: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  margin-right: 2%;
  border-radius: 5% 5% 5% 5%;
  display:block;
}

/* On hover, add a black background color with a little bit see-through */
@media (hover: hover) {
.prev:hover, .next:hover {
/*	background-color:rgba(100,0,0,0.7);*/
  /*background-color: #0099CC;*/
}
}
/* Caption text */
.caption {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  z-index: 2;
  display: block;
  top: 0;
  left:0;
  width:10%;
}
.center p {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 8px 2px 2px;
  background-color: #717171;
  /*background-color: #bbb;*/
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active {
  background-color: white;
}
@media (hover: hover) {
.dot:hover {
	/*background-color:rgba(100,0,0,1);*/
  /*background-color: #0099CC;*/
  /*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}
}

#image {
  height: auto;
  min-height: 560px;
  max-height: 560px;
  max-width: 97%;
  position: relative;
  display:none;
}

#vimeo {
  position: absolute;
  display: none;
  width:960px;
  height:560px;
}
#video {
  position: relative;
  max-width: 960px;
  height: auto;
  min-height: 560px;
  max-height: 560px;
  background-color: black;
  display: none;
}
#html5video{
  position: relative;
  width:960px;
  height:560px;
  background-color: black;
  display: none;
}
