/* css document */
/* 大图切换css */
.focusbox {
	position: relative;
	width: 1004px;
	height: 340px;
	overflow: hidden;
}
.focusbox .pic img {
	width: 1004px;
	height: 340px;
	display: block;
}
.focusbox .hd {
	overflow: hidden;
	zoom: 1;
	position: absolute;
	bottom: 5px;
	right: 10px;
	z-index: 3
}
.focusbox .hd li {
	float: left;
	line-height: 15px;
	text-align: center;
	font-size: 12px;
	width: 25px;
	height: 10px;
	cursor: pointer;
	overflow: hidden;
	background: #919191;
	margin-left: 4px;
	filter: alpha(opacity=80);
	opacity: .8;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease
}
.focusbox .hd .on {
	background: #fff;
	filter: alpha(opacity=100);
	opacity: 1;
}
.focusbox .prev,  .focusbox .next {
	width: 45px;
	height: 99px;
	position: absolute;
	top: 91px;
	z-index: 3;
	filter: alpha(opacity=20);
	-moz-opacity: .2;
	opacity: .2;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease
}
.focusbox .prev {
	background-image: ;
	background-position: -112px 0;
	left: 0
}
.focusbox .next {
	background-image: ;
	background-position: -158px 0;
	right: 0
}
.focusbox .prev:hover,  .focusbox .next:hover {
	filter: alpha(opacity=60);
	-moz-opacity: .6;
	opacity: .6
}
