#carouselContent a:focus {
	outline: 2px dotted white;
}

.carouselElement picture a {
	width: 100%;
}

.carouselLeftContainer,
.carouselRightContainer {
    position: absolute;
    top: 50%;
    z-index:10;
    transform: translateY(-50%);
}

.carouselLeftArrow,
.carouselRightArrow {
    position: relative;
    cursor: pointer;
    display:none;
    text-decoration: none;
}

.carouselLeftArrow::before,
.carouselRightArrow::before {
    font-family: pepmdx;
    font-size: 40px;
    color: #E6E7E8;
}

.carouselLeftArrow:hover,
.carouselRightArrow:hover {
    text-decoration: none;
}

.carouselLeftContainer {
	left: 15%;
}

.carouselLeftArrow::before {
    content: "\e30d";  
}

.carouselRightContainer {
	right: 15%;
}

.carouselRightArrow::before {
    content: "\e30c";  
}

.carouselLeftArrow:hover::before,
.carouselRightArrow:hover::before {
    color: #fff;
}

#carouselContent {
	overflow: hidden;
}

.carouselElement {
	display:none;
	visibility:hidden;
	position: absolute;
	left: -2000px;
}

.carouselElement.show {
	position: relative;
	left: 0px;
	visibility:visible;
	display: none;
}

.carouselElement .imgCarousel {
	position: relative;
}

.carouselElement .noOverlay {
	position: relative;
}

.carouselElement img {
	width: 100%;
	display: block;
}

.carousel-text {
	background-color: #000;
	position: absolute;
    bottom: 0;
	width: 100%;
	min-height: 120px;
	zoom: 1;
    /* set background with alpha channel transparancy: 1st for IE no PIE, 2nd for IE PIE, 3rd for others */
    background: rgb(16,9,11);
    -pie-background: rgba(16,9,11,0.5);
    background: rgba(16,9,11,0.5);
    /* add PIE for IE < 9 */
    behavior: url(/static/css/PIE.htc);
}

/* prevent IE9 using PIE */
:root *> .carousel-text {
  behavior: none;
}

.carousel-text-wrapper {
	margin: 0 auto;
	width: 60%;
}

.carouselElement .title {
	float:left;
	margin: 10px 0 0 0;
	font-family: FuturaW01-MediumCondens;
	font-size: 30px;
	color: #00AEEF;
}

.carouselElement .desc {
	float:left;
	font-family: AvenirLTStd55RomanRegular;
	text-align: left;
	font-size: 16px;
	position: relative;
	color: #fff;
	margin: 10px 0;
}

/* tablet landscape mode */
@media only screen and (min-width: 769px) and (max-width:1024px){

	.carouselLeftContainer{
		left: 7%;
	}

	.carouselRightContainer{
		right: 7%;
	}

	.carousel-text-wrapper{
		width: 75%;
	}

	.carouselElement.show .title,
	.carouselElement .title{
		width: 100%;
		text-align: center;
	}

	.carouselElement img {
		width: 120%;
	}
}


/* tablet */
@media only screen and (min-width:481px) and (max-width:900px) {

	.carouselElement.show img {
		margin-left: -50%;
		width: 200%;
		max-width: 200%;
	}

	.carouselLeftContainer {
		left: 1%;
	}

	.carouselRightContainer {
		right: 1%;
	}

	.carousel-text-wrapper {
		max-width: 900px;
		width: 80%;
	}

	.carouselElement.show .title,
	.carouselElement .title {
		font-size: 30px;
		width: 100%;
		text-align: center;
	}

	.carouselElement .desc {
		font-size: 12px;
	}

}

/* mobile */
@media only screen and (max-width:480px) {
	
	.carouselLeftArrow::before,
	.carouselRightArrow::before {
	    font-size: 25px;
	}

	.carouselElement.show img {
		margin-left: 0%;
		width: 100%;
		max-width: 100%;
	}

	.carouselElement.show img.IE {
		margin-left: -90%;
		width: 300%;
		max-width: 300%;
	}

	.carousel-text-wrapper {
		width: 80%
	}

	.carouselElement.show .title,
	.carouselElement .title {
		font-size: 20px;
	}

	.carouselElement .desc {
		font-size: 12px;
		margin: 0;
	}

	.carouselLeftContainer {
		left: 1%;
	}

	.carouselRightContainer {
		right: 1%;
	}
}