@charset "utf-8";
/* CSS Document */

 /* Slideshow container */
.slideshow-container {
    border-bottom: 2px solid #fff;
    border-top: 2px solid #fff;
    margin: auto;
    max-width: 1000px;
    position: relative;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 0;
  top: 50%;
  width: auto;
  margin-top: -23px;
  color: white;
  font-weight: bold;
  font-size: 36px;
  transition: 0.6s ease;
  border-radius: 0 5px 5px 0;
  background-color: rgba(0, 0, 0, 0.3);
  text-shadow: 3px 1px #333;
  text-decoration:none !important;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
  padding: 14px 10px 18px 14px;
}

.prev {
  padding: 14px 14px 18px 8px;	
}

/* 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);
  color:white;
}

/* Caption text */
.text {
    background-color: rgba(10, 48, 92, 0.8);
    bottom: 8px;
    height: 60px;
    margin-bottom: -8px;
    padding: 26px;
    position: absolute;
    width: 32%;
	margin-left:16px;
}

.slide-title {
    font-family: "Source Sans Pro",medium,sans-serif;
    font-size: 19pt;
    color:#ffffff;	
    letter-spacing: 2px;
	line-height:1.2em;
}

.caption-body {
	padding-top:8px;
color:#ffffff;
font-size:10pt;	
}

/* 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: 13px;
  width: 13px;
  background-color: #aaa;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
  text-align:center;
  margin-right:10px;
  display:none;
}

.dotContainer {
  position:absolute;	
  margin-top:-16px;
  text-align:center;
  width:100%;
}

.active, .dot:hover {
background: #c5deea; /* Old browsers */
background: -moz-linear-gradient(top, #c5deea 0%, #8abbd7 31%, #066dab 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, #c5deea 0%,#8abbd7 31%,#066dab 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, #c5deea 0%,#8abbd7 31%,#066dab 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c5deea', endColorstr='#066dab',GradientType=0 ); /* IE6-9 */
}

/* 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}
}