@charset "utf-8";
.boxStyle {
	margin: auto;
	width: 960px;
	height: 280px;
	position: relative;
	text-align: center;
	z-index: 1000;
}
.conStyle {
	position: absolute;
	width: auto;
	height: auto;
	opacity: 0;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	display: block;
	z-index: 1009;
}
.conStyle-now {
	position: absolute;
	width: auto;
	height: auto;
	top: 0px;
	opacity: 1;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}
.tabStyle {
	width: auto;
	height: auto;
	list-style-type: none;
	position: absolute;
	bottom: 0px;
	margin: auto;
	right: 0%;
	z-index: 1010;
}
.tabStyle li {
	float: left;
}
.tabStyle li a {
	background-repeat: no-repeat;
	display: block;
	height: 15px;
	width: 20px;
	text-align: center;
	text-decoration: none;
	padding-top: auto;  
	font-size: 10px;
	border-radius: 5px;
	background-image: linear-gradient(bottom, rgb(159,160,160) 04%, rgb(255,255,255) 72%, rgb(255,255,255) 34%);
	background-image: -o-linear-gradient(bottom, rgb(159,160,160) 04%, rgb(255,255,255) 72%, rgb(255,255,255) 34%);
	background-image: -moz-linear-gradient(bottom, rgb(159,160,160) 04%, rgb(255,255,255) 72%, rgb(255,255,255) 34%);
	background-image: -webkit-linear-gradient(bottom, rgb(159,160,160) 04%, rgb(255,255,255) 72%, rgb(255,255,255) 34%);
	background-image: -ms-linear-gradient(bottom, rgb(159,160,160) 04%, rgb(255,255,255) 72%, rgb(255,255,255) 34%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.04, rgb(159,160,160)),
		color-stop(0.52, rgb(159,160,160)),
		color-stop(0.54, rgb(159,160,160))
	);
	opacity: 0.75;
}
.tabStyle li .tab-now {
	background-image: linear-gradient(bottom, rgb(0,50,150) 04%, rgb(255,255,255) 52%, rgb(255,255,255) 54%);
	background-image: -o-linear-gradient(bottom, rgb(0,50,150) 04%, rgb(255,255,255) 52%, rgb(255,255,255) 54%);
	background-image: -moz-linear-gradient(bottom, rgb(0,50,150) 04%, rgb(255,255,255) 52%, rgb(255,255,255) 54%);
	background-image: -webkit-linear-gradient(bottom, rgb(0,50,150) 04%, rgb(255,255,255) 52%, rgb(255,255,255) 54%);
	background-image: -ms-linear-gradient(bottom, rgb(0,50,150) 04%, rgb(255,255,255) 52%, rgb(255,255,255) 54%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.04, rgb(0,50,150)),
		color-stop(0.52, rgb(255,255,255)),
		color-stop(0.54, rgb(255,255,255))
	);
	opacity: 0.75;
}
