.productcate-title {
	text-align: center;
	font-size: 30px;
}

.productcate-title div {
	background: #FFFFFF;
	display: inline-block;
	position: relative;
	z-index: 2;
	padding: 0 30px;
	letter-spacing: 1px;
	color: #000000;
}

.productcate-title hr {
	position: relative;
	top: -31px;
	z-index: 1;
	border: none;
	background: #BFBFBF;
	height: 1px;
}

.productcate-title hr:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	height: 1px;
	background: #000000;
	width: 0%;
	transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
}

.productcate-title hr:after {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	right: 0;
	height: 1px;
	background: #000000;
	width: 0%;
	transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
	-ms-transition: all 1s;
	-o-transition: all 1s;
}

.inner-all:hover .productcate-title hr:before,
.inner-all:hover .productcate-title hr:after {
	width: 50%;
}

.productWrapper .product-display {
	display: table;
}

.productWrapper .product-display a {
	display: block;
	float: left;
	width: 270px;
	height: 320px;
	overflow: hidden;
	margin-right: 39px;
	margin-bottom: 35px;
}

.productWrapper .product-display a:hover {
	/*	box-shadow: 2px 2px 4px 2px #9F9F9F;*/
}

.productWrapper .product-display a * {
	transition: all .5s;
	-moz-transition: all .5s;
	-webkit-transition: all .5s;
	-ms-transition: all .5s;
	-o-transition: all .5s;
}

.productWrapper .product-display a span {
	display: block;
	margin: 0 auto;
	width: 270px;
	height: 270px;
	overflow: hidden;
	background: #FFFFFF;
}

.productWrapper .product-display a img {
	display: block;
	margin: 0 auto;
	width: 270px;
	height: 270px;
	/*transform: scale(1.2);
		-webkit-transform: scale(1.2);
		-ms-transform: scale(1.2);
		-moz-transform: scale(1.2);*/
}

.productWrapper .product-display a:hover img {
	/*	transform: scale(1);
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		-moz-transform: scale(1);*/
	-moz-transform: scaleX(-1);
	-webkit-transform: scaleX(-1);
	-o-transform: scaleX(-1);
	transform: scaleX(-1);
	/*IE*/
	filter: FlipH;
}

.productWrapper .product-display a div {
	background: #F8F8F8;
	margin: 0 auto;
	width: 250;
	color: #5f5f5f;
	height: 50px;
	line-height: 50px;
	letter-spacing: 1px;
	text-align: center;
	font-size: 16px;
	padding: 0 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.productWrapper .product-display a:hover div {
	background: #2F2F2F;
	color: #FFFFFF;
}

.productWrapper .product-display a.mrgNO {
	margin-right: 0;
}