/* Slideshow */
.button {
	cursor: pointer;
	display: inline-block;
	background-color: white;
	width: 15px;
	height: 15px;
	border-radius: 50%;
}

.active, .button:hover, .past {
	background-color: #000099;
}

.buttonContainer {
	position: absolute;
	left: 7.5px;
	bottom: 2px;
}

.fade {
	animation-duration: 0.8s;
	animation-name: fade;
}

.nextButton {
	right: 0px;
	border-radius: 3px 0 0 3px;
}

.nextButton:hover, .previousButton:hover {
	 background-color: rgba(0,0,0,0.8);
}

.nextButton, .previousButton {
	cursor: pointer;
	position: absolute;
	width: auto;
	color: white;
	margin-top: -15px;
	padding: 15px;
	font-size: 18px;
	font-weight: bold;
	top: 50%;
}

.slide {
	z-index: 10;
	display: none;
	height: 600px;
	width:auto;
}

.slide img {
	width: 100%;
	height: auto;
}

.slideshow-container {
	overflow-y : hidden;
	/*float: right;*/
	position: relative;
	width: 920px;
	height: auto;
	margin: 20px;
	margin-left: 0px;
}

@keyframes fade {
	0% { 
		opacity:  0.4;
	}
	100% {
		opacity: 1;
	}
}

/* Screen resolution */
@media only screen and (max-width: 1400px) {

	/* Slideshow */
	.slideshow-container {
		float: left;
	}
}

@media only screen and (max-width: 950px) {

	/* Slideshow */
 	.slide {
 		width: 100%;
 		height: auto;
 	}

	.slideshow-container {
		margin:0;
 		width: 100%;
 		height: auto; 
 	}
}
