#wrapper {
	width: 663px;
	height: 365px;
	position: relative;
	box-shadow: 0 5px 18px #ececec;
	z-index: 8;
}
#slider-wrap {
	width: 663px;
	height: 365px;
	position: relative;
	overflow: hidden;
}
#slider-wrap ul#slider {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#slider-wrap ul#slider li {
	float: left;
	position: relative;
	width: 663px;
	height: 365px;
}
#slider-wrap ul#slider li > div {
	height: 50px;
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	background-color: #fff;
}
#slider-wrap ul#slider li > div h3 {
	width: 75%;
}
#slider-wrap ul#slider li > div h3 a {
	display: block;
	width: 100%;
	height: 30px;
	padding: 10px 0 10px 20px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	font-family: "kaiti";
	font-size: 18px;
	color: #333;
	line-height: 30px;
}
#slider-wrap ul#slider li > div h3 a:hover {
	color: #b38955;
}
#slider-wrap ul#slider li i {
	text-align: center;
	line-height: 400px;
	display: block;
	width: 100%;
	font-size: 90px;
}
/*btns*/
.btns {
	position: absolute;
	width: 50px;
	height: 60px;
	top: 40%;
	margin-top: -25px;
	line-height: 57px;
	text-align: center;
	cursor: pointer;
	background: rgba(0,0,0,0.1);
	z-index: 100;
	-webkit-user-select: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	-ms-user-select: none;
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	transition: all 0.1s ease;
}
.btns:hover {
	background: rgba(0,0,0,0.3);
}
#next {
	right: -50px;
	background: url(/images/arrow-right.png) no-repeat center;
}
#previous {
	left: -50px;
	background: url(/images/arrow-left.png) no-repeat center;
}
#counter {
	bottom: 10px;
	right: 0;
	width: 105px;
	position: absolute;
	color: rgba(0,0,0,0.4);
	font-family: "Philosopher";
	font-size: 18px;
	background-color: #fff;
	text-align: center;
	letter-spacing: -1px;
}
#slider-wrap.active #next {
	right: 0px;
}
#slider-wrap.active #previous {
	left: 0px;
}
/*bar*/
#pagination-wrap {
	min-width: 20px;
	margin-top: 295px;
	margin-right: 15px;
	height: 15px;
	position: relative;
	text-align: right;
}
#pagination-wrap ul {
	width: 100%;
}
#pagination-wrap ul li {
	margin: 0 4px;
	display: inline-block;
	width: 10px;
	height: 4px;
	border-radius: 10px;
	background-color: #fff;
	border: solid 1px #fff;
}
#pagination-wrap ul li.active {
	background-color: #8b8b8b;
	border: solid 1px #fff;
}
#slider img {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
/*ANIMATION*/
#slider-wrap ul, #pagination-wrap ul li {
	-webkit-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
	-moz-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
	-o-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
	-ms-transition: all 0.3s cubic-bezier(1, .01, .32, 1);
	transition: all 0.3s cubic-bezier(1, .01, .32, 1);
}