/*!
 * Bootstrap v2.0.2
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */

.carousel {
	line-height:1;
}
.carousel-inner {
	overflow:hidden;
	width:100%;
	position:relative;
}
.carousel .item {
	display:none;
	position:relative;
	width:100%;
	-webkit-transition:0.6s ease-in-out left;
	-moz-transition:0.6s ease-in-out left;
	-ms-transition:0.6s ease-in-out left;
	-o-transition:0.6s ease-in-out left;
	transition:0.6s ease-in-out left;
}
.carousel .item > img {
	display:block;
	line-height:1;
}
.carousel .active,
.carousel .next,
.carousel .prev {
	display:block;
}
.carousel .active {
	left:0;
}
.carousel .next,
.carousel .prev {
	position:absolute;
	top:0;
	width:100%;
}
.carousel .next {
	left:100%;
}
.carousel .prev {
	left:-100%;
}
.carousel .next.left,
.carousel .prev.right {
	left:0;
}
.carousel .active.left {
	left:-100%;
}
.carousel .active.right {
	left:100%;
}
.carousel-control {
}
.carousel-caption {
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	padding:10px 15px 5px;
	background:#333333;
	background:rgba(0, 0, 0, 0.75);
}
.carousel-caption h4,
.carousel-caption p {
	color:#ffffff;
}
