/*
 * This is the file slider.css.
 * File created by Mathé Hertogh, 2015-08-01, Leiden.
 * This file contains all the css for the slider.
 */

.slider {
	height: 400px;
	position: relative;
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 20px;
    box-shadow: 3px 3px 7px 0px black;
	z-index: 1;
}

.slider > img {
	height: 100%;
}

.leftArrow, .rightArrow {
	width: 42px;
	height: 70px;
	opacity: 0.5;
	margin-top: 165px;
	position: absolute;
	display: none;
}

.leftArrow {
	left: 5%;
}

.rightArrow {
	right: 5%;
}

.leftArrow:hover, .rightArrow:hover {
	opacity: 0.9;
}

.slideImg {
	display: none;
}

