#slideshow{
	position:absolute;
	background-size:100% 100%;
	background-repeat:no-repeat;
	background-position:left top;
	width:100%;
	height:100%;
	z-index:1;
	-webkit-transition: all 3s ease;
    -moz-transition: all 3s ease;
    -o-transition: all 3s ease;
    -ms-transition: all 3s ease;
    transition: all 3s ease;
}
.hideme {
	opacity:0;

}
.w3-left, .w3-right, .w3-badge {
	cursor:pointer;
	position:absolute;
	z-index:990;
	color:#000;
	opacity:0.5;
	top:50%;
	font-size:250%;
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.w3-left{
	left:10px;
	opacity:0.5;
}
.w3-right{
	right:10px;
	opacity:0.5;
}
.w3-left:hover{
	left:10px;
	opacity:1;
	text-shadow:0px 0px 3px rgba(255,255,255,0.8);
	color:#000;
}
.w3-right:hover{
	right:10px;
	opacity:1;
	text-shadow:0px 0px 3px rgba(255,255,255,0.8);
	color:#000;
}
@media screen and (max-width: 1000px) {
#slideshow{
	background-size:auto 50%;
	background-position:top center;
	right:0;
	top:0;
	width:100%;
}
.w3-left, .w3-right, .w3-badge {
	cursor:pointer;
	top:350px;
}
}