
#slideshow > div { 
    position: absolute; 
    }

#slideshow > div > img {
	width:100%;
	height:100%;
	}

#slideshow:hover i, #slideshow:hover .slider-dots{
	opacity: 1;
	}

.slidebtn {
	background: transparent;
	outline: none;
	border: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	padding: 0 10px 0 10px;
	}

.slidebtn:active,
.slidedtn:focus {
	outline:none;}
	

.prev {
    position: absolute; 
    top: 10px; 
    left: 10px; 
    bottom: 10px;
}

.next {
    position: absolute; 
    top: 10px; 
    right: 10px; 
    bottom: 10px;
}


.slider-dots {
	opacity: 0.2;
	list-style: none;
	display: inline-block;
	padding-left: 0;
	margin-bottom: 0;
	position: absolute;
	left: 50%;
	bottom: 3%;
	transform: translate(-50%, 0);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.slider-dots li {
	color: #00aeef;
	display: inline;
	font-size: 48px;
	margin-right: 5px;
	cursor: pointer;
}

.slider-dots li.active-dot {
  color: #fff;
}


