.carousel {
	position: relative;
	overflow: hidden;
	height: 650px; /* default, also change the controls height to match, change as needed */
	background-color: #000;
}
.carousel .slider {
	position: absolute;
	top: 0;
	bottom: 0;
	/* transition speed, left right */
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	transition: all 1s ease-out;
}
.carousel .contentTile {
	position: relative;
	display: inline-block;
	float: left;
	height: 100%;
}
.carousel .carouselControls {
	position: absolute;
	width: 100%;
	bottom: 20px;
	text-align: center;
	z-index: 10;
}
.carousel .carouselControls a {
	display: inline-block;
	height: 10px;
	width: 10px;
	margin: 8px;
	border: 1px solid #FFF;
	border-radius: 10px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}
.carousel .carouselControls a:hover {
	border-color: #FFF;
	background-color: #FFF;
}
.carousel .carouselControls a.active {
	border-color: #14CFBF;
	background-color: #14CFBF;
}

/* Title display */
.carouselContainer .controls {
	position: relative;
	top: 250px;
	/*height: 650px;*/ /* default, also change the controls height to match, change as needed */
	text-align: center;
	z-index: 20;
}

.carouselContainer .controls h1 {
	margin-bottom: 40px;
	color: #FFF;
	font-size: 55px;
	text-transform: uppercase;
}

.carouselContainer .controls h5 {
	color: #FFF;
	font-size: 20px;
	margin-bottom: 40px;
}


/* Image styles */
.carouselContainer .posterFrame {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-transition: all 1s;
	-moz-transition: all 1s;
	-o-transition: all 1s;
	transition: all 1s;
	z-index: 0;
}