#slider-wrap {
	height: 400px;
    margin: 0;
    overflow: hidden;
	position: relative;
	}
#slider{ 
	width: 100%;
	height: 400px;
	position: absolute;
	}
.slide{
	width:100%;
	height:100%;
	color: #fff;
	text-align: center;
	}	
.slide span {
    display: block;
    font-size: 20px;
    margin: 15px 0 0;
	text-shadow: 0 0 2px #000;
}
.sli-links{ 
    position: absolute;
	width: 100%;
    text-align: center;
    bottom: 0;
	}
.sli-links .control-slide{
	margin: 6px 2px 2px;
	display:inline-block;
	width:16px;
	height:16px;
	border-radius: 10px;
	overflow:hidden;
	text-indent:-9999px;
	background-color:#fff;
	}
.sli-links .control-slide:hover{
	cursor:pointer;
	background-color: #fa4d4d;
	}
.sli-links .control-slide.active{
	background-color: #fa4d4d;
	}
#prewbutton, #nextbutton{ 
	display:block;
	width:19px;
	height:100%;
	position:absolute;
	top:0;
	overflow:hidden;
	text-indent:-999px;
	background:url("../img/arrows.png") left center no-repeat;
	opacity:0.8;
	z-index:3;
	outline:none !important;}
#prewbutton{left:10px;}
#nextbutton{
	right:10px;
	background:url("../img/arrows.png") right center no-repeat;}
#prewbutton:hover {
	background:url("../img/arrows_h.png") left center no-repeat;
}
#nextbutton:hover {
	background:url("../img/arrows_h.png") right center no-repeat;
}


@media (max-width : 992px) {
	#slider .slide {
		background-size: cover !important;
		background-position: center center !important;
	}
}