@charset "utf-8";
#slideshow { /* containing block */
	height: 500px;
	width: 800px;
	background-color:#fff;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	margin-bottom: 8px;
}


#slideshow > div { /* Slide */
   width: inherit;
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
	opacity: 0;
	margin: auto;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	white-space: nowrap;
	position: absolute;
}

#slideshow > div > div > img {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	margin-bottom: 8px;
}

#slideshow > #back {
position: relative;
top:250px;
left:-350px;
  background: url(arrows_white.png) no-repeat;
margin-top:-35px;
	display: inline-block;
	width:45px;
	height:70px;
	cursor:pointer;
	opacity:0.4;
	transition: opacity 0.5s ease 0s;
	-moz-transition: opacity 0.5s ease 0s;
	-webkot-transition: opacity 0.5s ease 0s;
}

#slideshow > #back:hover {
	opacity: 1;
}

#slideshow > #forward {
position: relative;
top:250px;
left:350px;
margin-top:-35px;
text-align:right;
  background: url(arrows_white.png) no-repeat;
  background-position: 100% 0;
	display: inline-block;
	width:45px;
	height:70px;
	cursor:pointer;
	opacity:0.4;
	transition: opacity 0.5s ease 0s;
	-moz-transition: opacity 0.5s ease 0s;
	-webkot-transition: opacity 0.5s ease 0s;
}

#slideshow > #forward:hover {
	opacity: 1;

}

