body,div,ul,li {
	margin: 0;
	padding: 0;
}

ul {
	list-style-type: none;
}

#box {
	position: relative;
	background: #fff;
	width: 740px;
	height: 290px;
	border-radius: 0px;
	border: 0px solid #fff;
	margin: 0px auto;
}

#box .list {
	position: relative;
	overflow: hidden;
	width: 740px;
	height: 290px;
	border: 0px solid #ccc;
}

#box .list li {
	position: absolute;
	top: 0;
	left: 0;
	width: 740px;
	height: 290px;
	opacity: 0;
	filter: alpha(opacity =   0);
	display: none;
}

#box .list li img {
	position: absolute;
	top: 0;
	left: 0;
	max-width: 100%;
	height: auto;
}

#box .list li.current {
	opacity: 1;
	filter: alpha(opacity =   100);
	display: inherit;
}

#box .count {
	position: absolute;
	right: 0;
	bottom: 5px;
}

#box .count li {
	color: #fff;
	float: left;
	width: 20px;
	height: 20px;
	cursor: pointer;
	margin-right: 5px;
	overflow: hidden;
	background: #F90;
	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: #f60;
}

#box .triangle_left {
	position: absolute;
	left: 0px;
	bottom: 115px;
}

#box .triangle_left img {
	width: 30px;
}

#box .triangle_right {
	position: absolute;
	right: 0px;
	bottom: 115px;
}

#box .triangle_right img {
	width: 30px;
}

#tmp {
	width: 100px;
	height: 100px;
	background: red;
	position: absolute;
}