.flash-slider{
	position: relative;
	width: 650px;
	max-width: 100%;
	margin: 0 auto;
overflow: hidden;
}

.flash-slide{
	position: absolute;
	top: 0;
	left: 0;
	width: 650px;
	max-width: 100%;
	opacity: 0;
	transform: translateX(40px);
	transition: opacity 1s ease, transform 1s ease;
	z-index: 1;
}

.flash-slide.is-active{
	position: relative;
	opacity: 1;
	transform: translateX(0);
	z-index: 2;
}

.flash-slide img{
	display: block;
	width: 650px;
	max-width: 100%;
	height: auto;
	border: 0;
}

.flash-dots{
	text-align: center;
	margin-top: 8px;
}

.flash-dots button{
	width: 10px;
	height: 10px;
	margin: 0 4px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #cccccc;
	cursor: pointer;
}

.flash-dots button.is-active{
	background: #333333;
}