
/* carousel base class */

.carousel 
{
	max-height: 650px;	
	margin-bottom: 50px;
	display: block;
	float: left;
	position: relative;
}

.carousel-caption 
{
	z-index: 10;
}

.carousel-item 
{
	height: 32rem;
	background-color: #777;
}

.carousel-item > img 
{
	position: absolute;
	top: 0;
	left: 0;  	
}

/* carousel indicators */

.carousel-indicators > li 
{
	margin-bottom: .25em;
}

.carousel-indicators 
{
	float: left;
    width: 1rem;
	margin-left: 0; 
}

.carousel-indicators .active
{
	background-color: #272323;
}

/* RESPONSIVE CSS */

@media (max-width: 1100px)
{
	.carousel
	{
		width: 100%;
		height: auto;
	}	
}

@media (min-width: 40em) 
{	
	.carousel-caption p 
	{
		margin-bottom: 1.25rem;
		font-size: 1.25rem;
		line-height: 1.4;
	}

	.featurette-heading 
	{
		font-size: 50px;
	}
}

@media (min-width: 62em) 
{
	.featurette-heading 
	{
		margin-top: 7rem;
	}
}

.carousel-inner > .item > img, .carousel-inner > .item > a > img 
{	
    margin: auto;	
	width: 100%;	
	margin-bottom: 50px;
	/* -webkit-box-shadow: 0px 0px 27px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 0px 27px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 0px 27px 0px rgba(0,0,0,0.25); */
}

@media (max-width: 1050px)
{
	.carousel-inner > .item > img, .carousel-inner > .item > a > img 
	{	
		margin-bottom: 20px;
	}
}

.carousel-inner>.item>a>img, .carousel-inner>.item>img 
{
    line-height: 1;
}

.carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img 
{	
    display: block;
    max-width: 100%;   
	height: auto;
	width: 100%;	
	float: left;
}

.carousel-inner
{
	margin: 0;
	padding: 0;
}

img 
{
	margin-bottom: -5px;
	vertical-align: middle;
    border: 0;
	overflow: hidden;
}

.carousel-caption 
{	
	background:rgba(0,0,0,0.5);
	position: absolute;
	padding-left: 10px;
}

.carousel-caption p, .carousel-caption h3
{	
	text-align: center;
	font-size: 1.5em;
	font-family: 'Oswald', sans-serif;	
	color: #ddd;
}

.carousel-caption h3
{
	font-size: 2em;
}

/* carousel arrows */

.arrow-left
{	
	position: absolute;
	background-color: none;	
	width: 50px;
	height: auto;
	max-width: 50px; 
	min-width: 20px; 
	max-height: 50px;
	min-height: 20px;
	left: 0px;
	top: 0px;
}

.arrow-right
{	
	position: absolute;
	background-color: none;	
	width: 50px;
	height: auto;
	max-width: 50px; 
	min-width: 20px; 
	max-height: 50px;
	min-height: 20px;
	left: 0px;
	top: 0px;
}