.slide_gallery_wrap {
	width:100%;
	position: relative;
	margin-bottom: 2rem;
	padding-bottom: 55px;
}

.slide_gallery {
	width: 100%;
	height: 0;
	overflow: hidden;
	position: relative;
}
	.slide_gallery img {
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		display: none;
	}
	.slide_gallery img.current { display: block; }
	
.controls {
	width: 100%;
	height: 50px;
	position: absolute;
	bottom: 0;

	
	
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
}
	.control_btn {
		position: absolute;
		cursor: pointer;
	
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}
	.control_left {
		left: 0px;
		top: 0;
	}
	.control_right {
		right: 0px;
		top: 0;
	}
	
	.control_btn i {
		font-size: 16px;
	}
	
	
	.slide_gallery_status {
		width: auto;
		padding: 15px;
		font-size: 24px;
		color: #6a4c92;
		text-align: center;
		font-family: "Tungsten", Impact, sans-serif;
	}
	
	
