/* responsive slider */
.responsiveSlider{
	margin: 20px auto 0;
	overflow: hidden;
}
.responsiveSlider ul{
	-webkit-transition: all .25s ease-in-out;
	-moz-transition: all .25s ease-in-out;
	-ms-transition: all .25s ease-in-out;
	-o-transition: all .25s ease-in-out;
	transition: all .25s ease-in-out;
}
.responsiveSlider li{
	display: block;
	float: left;
}

.slider-nav-arrow{
	position: absolute;

	display: block;
	width: 80px;
	height: 100%;

	background-position: center;
	background-repeat: no-repeat;
}
.slider-nav-arrow_disable{
	opacity: 0.3;
	cursor: default;
}
/* /responsive slider */





/* custom your style */
.your-slider-wrap{
	position: relative;
	width: 100%;
	height: 250px;
	margin:20px 0px;
}
.your-slider{
	width: 1500px;
	height:250px;
	
}
.slider-arrow_left{
	left: 0;
	background-image: url(../images/red-left.png);
}
.slider-arrow_right{
	right: 0;
	background-image: url(../images/red-right.png);
}
@media (max-width: 1620px){
	.your-slider{
		width: 1250px;
	}
}
@media (max-width: 1370px){
	.your-slider{
		width: 1070px;
	}
}
@media (max-width: 1120px){
	.your-slider{
		width: 750px;
	}
}
@media (max-width: 870px){
	.your-slider{
		width: 500px;
	}
}
@media (max-width: 620px){
	.your-slider{
		width: 250px;
	}
}
.your-item{
	width: 248px;
	background-color: #fff;
	border: 1px solid #e3e7e6
;
	margin: 10px;
}
.your-item-pic{
	width: 240px;
	height: 145px;
}
.your-item-title{
	width: 100%;
	height: 42px;
	font-weight:bold;
	text-transform: uppercase;
	text-align: center;
	color: #CE000D;
	line-height: 42px;
	background-color: #f4f4f4;
}

.your-item:hover .your-item-pic{
	opacity: .5;
}
.your-item:hover .your-item-title{
	color: #f4f4f4;
	background-color: #CE000D;
}