#carousel {
	background-color: #eee;
	border: 1px solid #ccc;
	height: auto;
	margin-bottom: 1em;
	position: relative;
}

#carousel .carousel-item {
	height: 300px;
	overflow: hidden;
}

#carousel .carousel-item a.btn {
	color: white;
}

#carousel .normal img {
	float: left;
	max-width: 375px;
	max-height: 250px;
	margin: 0 15px 15px 0;
	border: 10px solid white;
    box-shadow: 0 0 5px rgba(0,0,0,.4);
}

#carousel .fullwidth img {
	position: absolute;
	top: 0;
	width: 100%;
	display: block;
	height: auto;
}

#carousel .rightalign img {
	float: right;
	max-width: 375px;
	max-height: 250px;
	margin: 0 0 15px 15px;
	border: 10px solid white;
    box-shadow: 0 0 5px rgba(0,0,0,.4);
}

#carousel .carousel-caption {
	position: relative;
	text-align: left;
	margin: 15px 15px 0 15px;
	right: auto;
	left: auto;
	color: black;
	text-shadow: none;
	font-size: 14px;
	z-index: 100;
}

#carousel .fullwidth .carousel-caption {
	margin: 0;
}

#carousel h3 {
	font-size: 22px;
	color: #01246c;
	margin-top: 0.3em;
}

#carousel .carousel-caption ul, #carousel .carousel-caption ol {
	overflow: hidden;
}

#carousel .super {
	text-transform: uppercase;
	color: #666;
	font-size: 14px;
	margin: 0;
}

#carousel .btn-default {
	background-color: #C2282D;
	border-radius: 0;
	box-shadow: rgba(0, 0, 0, 0.329412) 0px 1px 5px 0px;
	color: white;
	text-transform: uppercase;
	margin-bottom: 1em;

}

.carousel-indicators {
	bottom: 0;
}

.carousel-indicators li {
	background-color: #666;
	border-color: #666;
	margin-right: 4px;
}

.carousel-indicators li.active {
	background-color: black;
	border-color: black;
	margin-right: 4px;
}

.carousel-control-prev, .carousel-control-next {
	top: 40%;
	bottom: 40%;
}

/* mobile */
@media (max-width: 767px) {
	#carousel .item {
		height: 400px;
	}

	#carousel .carousel-caption {
		margin: 0;
	}
	#carousel .normal img, #carousel .rightalign img {
		max-width: 50%;
		border: none;
		box-shadow: none;
 	}
 	#carousel .carousel-caption .text {
		margin: 15px 15px 0 15px;
 	}
}

/* tablets */
@media (max-width: 991px) and (min-width: 768px) {
}

/* laptops */
@media (max-width: 1199px) and (min-width: 992px) {
}

/* desktops */
@media (min-width: 1200px) {
}

