@charset "utf-8";
/* CSS Document */


#div-wrapper{
	white-space: nowrap;
	max-width:100%;
	
}

.container{
    overflow: hidden;
	width:100%;
	height: 500px;
	padding-bottom: 25px;
	padding-top: 30px;
	background: #ffffff;
}

/* Slideshow container */
.slideshow-container {
  max-width: 600px;
  
  position: relative;
  margin: 0 auto;
  padding: 0px;
	
}
@media only screen and (max-width: 961px) {
	.container{max-width:650px;}
	.container{margin: 0 auto;
	width:100%}
	
}

/* Hide the images by default */
.mySlides {
    display:block;
	
	
}
.mySlides img{
	border-radius: 10px;
	max-height:500px;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 10px;
  color: #333;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s 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 {
	

}

/* Caption text */
	

@media (max-width: 768px) {
	
	.text{font-size:12px; }
}


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

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 auto;
  background-color: #ffcc00;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
	
}
@media (max-width: 768px){
	.dot{
		height:10px;
		width:10px;
	}
}

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

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

