/*
 vanillaSlideshow v0.1
 (c) Dimitri Mikadze
 https://github.com/DimitriMikadze/vanilla-slideshow
 License: MIT
*/
@import url(http://fonts.googleapis.com/css?family=PT+Sans);

html, body {
	/* [disabled]width: 100%; */
	/* [disabled]height: 100%; */
	/* [disabled]margin: 0; */
	/* [disabled]padding: 0; */
	/* [disabled]background-color: #333333; */
	/* [disabled]font-family: 'PT Sans', sans-serif; */
}

#vanilla-slideshow-container {
	width: 1200px;
	/* [disabled]height: 100%; */
	/* [disabled]position: relative; */
	/* [disabled]text-align: center; */
}

#vanilla-slideshow .vanilla-slide {
	width: 100%;
	height: 100%;
	/* [disabled]background-size: cover; */
	/* [disabled]background-position: 50% 50%; */
	/* [disabled]background-repeat: no-repeat; */
	position: absolute;
	/* [disabled]top: 0; */
	/* [disabled]left: 0; */
	opacity: 0;
}

#vanilla-slideshow .vanilla-slide.vanilla-active { 
    opacity: 1;
}

#vanilla-slideshow .vanilla-slide img {
	/* [disabled]min-height: 100%; */
	/* [disabled]min-width: 1024px; */
	/* [disabled]width: 100%; */
	/* [disabled]height: auto; */
	/* [disabled]position: fixed; */
	/* [disabled]top: 0; */
	/* [disabled]left: 0; */
}

@media screen and (max-width: 1024px) { 
  #vanilla-slideshow .vanilla-slide img {
	/* [disabled]left: 50%; */
	/* [disabled]margin-left: -512px; */
  }
}

/* Arrows */

#vanilla-slideshow-previous {
	position: absolute;
	/* [disabled]left: 19%; */
	/* [disabled]top: 45%; */
	width: 48px;
	height: 50px;
	background-position: 0 100%;
	cursor: pointer;
	opacity: .4;
	z-index: 5;
	display: none;
	margin-left: 10px;
	margin-top: 190px;
}

#vanilla-slideshow-next {
	position: absolute;
	/* [disabled]right: 19%; */
	/* [disabled]top: 45%; */
	width: 48px;
	height: 50px;
	background-position: 100% 100%;
	cursor: pointer;
	opacity: .4;
	z-index: 5;
	display: none;
	/* [disabled]text-align: right; */
	margin-left: 1145px;
	margin-top: 190px;
}

#vanilla-slideshow-previous:hover, #vanilla-slideshow-next:hover {
	opacity: 1;
}

/* Indicators */

#vanilla-indicators {
	display: inline-block;
	z-index: 5;
	position: absolute;
	/* [disabled]bottom: 260px; */
	/* [disabled]left: 365px; */
	margin-top: 405px;
	margin-left: 10px;
}

.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;
}
