.sss {
	height: 0;
	margin: 0; 
	padding: 0;
	position: relative;
	display: block;
	overflow: hidden;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}

.ssslide {
	width: 100%;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	overflow: hidden;
}

.ssslide img {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	position: relative;
	display: block;
}

.sssnext, .sssprev {
	width: 50px;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.sssprev {
	left: 3%;
	background: url('arrow_left.png') no-repeat;
	background-size: 50px 50px;
	background-position: 0 50%;
}

.sssnext {
	right: 3%;
	background: url('arrow_right.png') no-repeat;
	background-size: 50px 50px;
	background-position: 0 50%;
}

.sssprev:hover, .sssnext:hover {
	cursor: pointer;
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}