.bannerGallery {
	position	: relative;
	overflow	: hidden;
	margin		: auto;
	z-index		: 1;
	max-width	: 100%;
}
	.bannerGallery > .bannerGalleryItem {
		width		: 100%;
		height		: 100%;
	}
		.bannerGallery > .bannerGalleryItem > img,
		.bannerGallery > .bannerGalleryItem > a > img {
			display		: block;
			width		: 100%;
			height		: auto;
		}
	.bannerGallery > .bannerGalleryItem:not(:first-child) {
		position	: absolute;
		display		: none;
	}
	.bannerGallery > .controls-arrows-left {
		position	: absolute;
		top		: 0;
		left		: 0;
		bottom		: 0;
		width		: 50px;
		height		: 100%;
		z-index		: 99;
		opacity		: .5;
	}
		.bannerGallery > .controls-arrows-left:hover {
			/*background	: rgba(0,0,0,.15);*/
			opacity		: 1;
		}
		.bannerGallery > .controls-arrows-left:after {
			content		: "";
			position	: absolute;
			top		: 50%;
			left		: 15px;
			margin-top	: -20px;
			width		: 0;
			height		: 0;
			border-top	: 20px solid transparent;
			border-bottom	: 20px solid transparent;
			border-right	: 20px solid rgba(255,255,255,.75);
  		}
	.bannerGallery > .controls-arrows-right {
		position	: absolute;
		top		: 0;
		right		: 0;
		bottom		: 0;
		width		: 50px;
		height		: 100%;
		z-index		: 99;
		opacity		: .5;
	}
		.bannerGallery > .controls-arrows-right:hover {
			/*background	: rgba(0,0,0,.15);*/
			opacity		: 1;
		}
		.bannerGallery > .controls-arrows-right:after {
			content		: "";
			position	: absolute;
			top		: 50%;
			right		: 15px;
			margin-top	: -20px;
			width		: 0;
			height		: 0;
			border-top	: 20px solid transparent;
			border-bottom	: 20px solid transparent;
			border-left	: 20px solid rgba(255,255,255,.75);
  		}
	.bannerGallery > .controls-dots-container {
		position	: absolute;
		left		: 0;
		bottom		: 0;
		right		: 0;
		width		: 100%;
		padding		: 5px;
		text-align	: center;
		z-index		: 98;
	}
		.bannerGallery > .controls-dots-container > .control-dot {
			display		: inline-block;
			width		: 10px;
			height		: 10px;
			margin		: 5px;
			background	: rgba(255,255,255,.5);
			border-radius	: 50%;
			box-shadow	: 1px 1px 1px rgba(0,0,0,.25);
		}
			.bannerGallery > .controls-dots-container > .control-dot.active {
				background	: rgba(242,101,36,.75);
			}
		