.graceSlider {
	width: 250px;
	height: 220px;
	margin: 0 auto;
	position: relative;
}
.graceSlideSet {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
}
.graceSlide {
	top: 0;
	left: 100%;
	width: 250px;
	height: 220px;
	position: absolute;
	box-sizing: border-box;
}
.gracePrev { margin-left: 10px; }
.graceNext { margin-left: 220px; }
.gracePrev, .graceNext {
	top: -125px;
	cursor: pointer;
	position: relative;
}
.gracePrev::before { left: -8px; }
.graceNext::before { left: -2px; }
.gracePrev::before, .graceNext::before {
	content: "";
	width: 29px;
	height: 29px;
	display: block;
	margin-top: -10px;
	position: absolute;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	background: rgba(0, 0, 0, 0.7);
}
.gracePrev::after {
	left: 2px;
	transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	-webkit-transform: rotate(225deg);
}
.graceNext::after {
	left: 4px;
	transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}
.gracePrev::after, .graceNext::after {
	top: 50%;
	content: '';
	border: 0px;
	width: 10px;
	height: 10px;
	margin-top: -2px;
	position: absolute;
	border-top: solid 2px #8c8c8c;
	border-right: solid 2px #8c8c8c;
}
#graceNaviList {
	left: 0;
	width: 100%;
	height: 10px;
	bottom: 20px;
	margin-top: 5px;
	text-align: center;
}
.graceNaviCircle {
	width: 5px;
	height: 5px;
	margin: 0 4px;
	cursor: pointer;
	border-radius: 8px;
	border:2px solid #666;
	display: inline-block;
	/*background: rgba(255, 255, 255, 0.4);*/
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
}
.graceNaviCircle.current{ background: #666; }
/* grace Slide End */