.slider {
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
	width: 100%;
	height: 400px;
	border:1px solid #ccc;
	background:rgba(0, 0, 0, 0.7);
}
.slider_h{ /*min-height:310px;*/}

.slider .nav-prev, .slider .nav-next {
	position: absolute;
	display: inline-block;
	width: 50px;
	height: 50px;
	bottom: 0px;
	background: url('../images/svg-sprite-navigation.png') no-repeat;
	background-size: 100%;
	z-index: 5;
}
.slider .nav-prev { left: 0; background-position: -13px -400px; }
.slider .nav-next { right: 0; background-position: 13px -450px; }

.slide {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: top center;
	background-repeat: no-repeat;
}
.slide:first-child {
	display: inline-block;
}
.slide a {
	display: block;
	width: 100%;
	height: 100%;
	color: #FFF;
	text-decoration: none;
	margin-top:70px;
	font-size:20px;
	font-weight:600;
}
.slide span {
	position: absolute;
	bottom: 0px;
	left: 0;
	display: block;
/*	width: calc(100% - 100px);*/
	width:100%;
	padding: 14px 20px;
	min-height:120px;
/*	background-color: #efefef;
	background-color: rgba(255,255,255,0.75);*/
	text-align: center;
	background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(0, 0, 0, 0.6) 63%, rgba(0, 0, 0, 0) 100%) repeat scroll 0 0;
/*	font-weight: bold;*/
	z-index: 4;
}

