/**
 * css 自定义轮播控件
 */
.slideshow{
	overflow: hidden;
	position: absolute;
}
.slideshow ul{
	list-style: none;
	padding: 0px;
	margin: 0px;
	overflow: auto;
}
.slideshow ul li{
	float: left;
}
.textClass{
	transform: translate3d(-0px,0px,0px);
	-ms-transform: translate3d(-0px,0px,0px); 	/* IE 9 */
	-moz-transform: translate3d(-0px,0px,0px); 	/* Firefox */
	-webkit-transform: translate3d(-0px,0px,0px); /* Safari 和 Chrome */
	-o-transform: translate3d(-0px,0px,0px); 	/* Opera */
	
	transition: transform 1s;
	-moz-transition: transform 1s; /* Firefox 4 */
	-webkit-transition: transform 1s; /* Safari 和 Chrome */
	-o-transition: transform 1s; /* Opera */
}