/*
 vanillaSlideshow v0.1
 (c) Dimitri Mikadze
 https://github.com/DimitriMikadze/vanilla-slideshow
 License: MIT
*/

#vanilla-slideshow-container { 
	width: 100%; 
	min-height: 47em; 
	max-height: auto;
	background-size: cover; 
	background-repeat: no-repeat;
	position: relative; 
	text-align: center;
}

#vanilla-slideshow .vanilla-slide { 
	width: 100%; 
	height: 100%; 
	background-size: cover; 
	background-position: 49% 49%;
	background-repeat: no-repeat;
	position: absolute; 
	top: 0; 
	left: 0; 
	opacity: 0;
}

#vanilla-slideshow .vanilla-slide.vanilla-active { 
    opacity: 1;
}

#vanilla-slideshow .vanilla-slide img {
  min-height: 90%;
  min-width: 96%;
  width : 96%;
  height: 90%;
  position: relative;
  top: 47px;
  left: 0;
  border: 2px solid #ba0707;
	box-shadow:inset 0 0 0px #404040, 0px 7px 6px #404040;
	-khtml-box-shadow:inset 0 0 0px #404040, 0px 7px 6px #404040;
	-moz-box-shadow:inset 0 0 0px #404040, 0px 7px 6px #404040;
	-ms-box-shadow:inset 0 0 0px #404040, 0px 7px 6px #404040;
	-o-box-shadow:inset 0 0 0px #404040, 0px 7px 6px #404040;
	-webkit-box-shadow:inset 0 0 0px #404040, 0px 7px 6px #404040;
}



/* Arrows */

#vanilla-slideshow-previous {
	position: absolute;
	left: 33px;
	top: 45%;
	width: 48px;
	height: 50px;
	background-position: 0 100%;
	cursor: pointer; 
	opacity: 0.7;
	z-index: 5; 
	display: none;
}

#vanilla-slideshow-next {
	position: absolute;
	right: 33px;
	top: 45%;
	width: 48px;
	height: 50px;
	background-position: 100% 100%;
	cursor: pointer; 	
	opacity: 0.7;
	z-index: 5; 
	display: none;
}

#vanilla-slideshow-previous:hover, #vanilla-slideshow-next:hover {
	opacity: 1;
}

/* Indicators */

#vanilla-indicators {
	display: inline-block;
	z-index: 5;
	position: absolute;
	bottom: 60px;
}

.vanilla-indicators {
	box-shadow: 0 0 10px #333333;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid #ffffff;
	float: left;
	margin-right: 3px;
	cursor: pointer;
}

.vanilla-indicators.vanilla-active {
	background-color: #ffffff;
}