.carousel {
	position: relative;
	overflow: hidden;
	height: 500px; /* default, also change the controls height to match, change as needed */
	background-color: #B1B3B6;
}
.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;
}
/* When the main buttons are used */
.carousel .controls a.button {
	margin-bottom: 0;
}


.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: #FFF;
	background-color: #FFF;
}

/* 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 a {
	text-decoration: none;
}

.carouselContainer .controls h5,
.carouselContainer .controls h5 span {
	color: #FFF;
	font-size: 20px;
	font-style: italic;
	margin-bottom: 40px;
}
.carouselContainer .controls h5 span {
	margin-left: 5px;
	color: #E4D9BE;
}
.carouselContainer .controls:hover h5 span {
	text-decoration: underline;
}


/* 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;
}

/* Carousel arrows */
.carouselArrows {
	position: absolute;
	width: 100%;
	bottom: 20px;
	z-index: 10;
}
.carouselArrows a.left {
	float: left;
}
.carouselArrows a.right {
	float: right;
}