#pages {
	text-align: center;
	margin: 25px 0 15px;
}
#pages a {
	display: inline-block;
	padding: 6px 15px;
	background-color: #fff;
	color: #888;
	margin: 0 2px;
	-webkit-transition-duration: 0.25s;
	-moz-transition-duration: 0.25s;
	-o-transition-duration: 0.25s;
	border: 1px #ddd solid;
	border-radius: 3px
}
#pages a:hover {
	background-color: #006db8;
	border-color: #006db8;
	color: #fff
}
#pages a.active {
	background-color: #006db8;
	border-color: #006db8;
	color: #fff
}
#pages a.prev, #pages a.next {
	font-size: 14px;
}
#pages span {
	display: inline-block;
	padding: 9px 15px;
	color: #888;
	position: relative;
	top: -2px
}
.page-wrapper {
}
.page-banner {
	position: relative;
	height: 300px;
	overflow: hidden;
	width: 1200px;
	margin: 0 auto 5px;
	z-index: 1;
	box-shadow: 6px 6px 0px rgba(0,0,0,.02);
}
.page-banner .image-con {
	overflow: hidden;
	height: 100%;
	width: 100%;
	position: relative;
	transition: all 1.5s cubic-bezier(0.215, .61, .215, 1);
	-webkit-transition: all 1.5s cubic-bezier(0.215, .61, .215, 1);
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.page-banner .image-con .image {
	height: 100%;
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top
}
.page-banner .pic {
	position: absolute;
	left: 50%;
	margin-left: 220px;
	top: 100%;
	transition: all 2.6s cubic-bezier(0.71, -0.01, 0.07, 0.99) 0s;
	-webkit-transition: all 2.6s cubic-bezier(0.71, -0.01, 0.07, 0.99) 0s;
}
.page-banner.hover .image-con {
	transform: scale(1);
	-webkit-transform: scale(1);
}
.page-banner.hover .pic {
	top: 25px;
}