#mySlider a {
	padding: 10px 25px;
    background-color: #00000000;
    color: #fff;
    border-radius: 0;
    text-decoration: none;
    margin-left: 10%;
    border: 1px solid #fff;
}

#mySlider {
	overflow: hidden;
    position: relative;
    width: 100%;
    height: 100vh;
}

.singleSlide {
    height: 100vh;
    position: absolute;
    left: 100%;
    width: 100%;
    top: 0px;
    background-repeat: no-repeat;
    background-size: cover;
}

.slideOverlay {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 50px;
    height: 100vh;
    box-sizing: border-box;
    line-height: 50px;
}

.slideOverlay h1{
    padding-top: 4vh;
    text-align: center;
}

.slideOverlay h4{
    padding-left: 10%;
    padding-top: 8vh;
}

.slideOverlay p{
    padding-left: 10%;
    line-height: 3rem;
    color: #fff;
    margin-bottom: 4vh;
}

#sliderNav {
	position: relative;
    top: -48vh;
    z-index: 1;
    font-size: 42px;
}

#sliderNav:hover { cursor: pointer; 	}

#sliderPrev {
    position: relative;
    float: left;
    left: 30px;
}

#sliderNext {
    position: relative;
    float: right;
    right: 30px;
}

@-webkit-keyframes slideIn {
    100% { left: 0; }
}

@keyframes slideIn {
    100% { left: 0; }
}

.slideInRight {
	left: -100%;
	-webkit-animation: slideIn 1s forwards;
    animation: slideIn 1s forwards;
}

.slideInLeft {
	left: 100%;
	-webkit-animation: slideIn 1s forwards;
    animation: slideIn 1s forwards;
}

@-webkit-keyframes slideOutLeft {
    100% { left: -100%; }
}

@keyframes slideOutLeft {
    100% { left: -100%; }
}

.slideOutLeft {
	-webkit-animation: slideOutLeft 1s forwards;
    animation: slideOutLeft 1s forwards;
}

@-webkit-keyframes slideOutRight {
    100% { left: 100%; }
}

@keyframes slideOutRight {
    100% { left: 100%; }
}

.slideOutRight {
	-webkit-animation: slideOutRight 1s forwards;
    animation: slideOutRight 1s forwards;
}