/*图片轮播*/
#box {
	float: left;
	position: relative;
	width: 535px;
	height: 202px;
	margin-left: 6px;
}

#box .list {
	position: relative;
	width: 535px;
	height: 202px;
	overflow: hidden;
}

#box .list li {
	position: absolute;
	top: 0;
	left: 0;
	width: 535px;
	height: 202px;
}

#box .count {
	position: absolute;
	right: 0;
	bottom: 5px;
	text-align: center;
}

#box .count li {
	color: #fff;
	float: left;
	width: 20px;
	height: 20px;
	cursor: pointer;
	margin-right: 5px;
	overflow: hidden;
	background: #999;
	opacity: 0.7;
	filter: alpha(opacity =  70);
	border-radius: 20px;
}

#box .count li.current {
	color: #fff;
	opacity: 1;
	filter: alpha(opacity =  100);
	font-weight: 700;
	background: #f77400;
}

#tmp {
	width: 100px;
	height: 100px;
	background: red;
	position: absolute;
}