/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
#myCarousel {
	/*position: absolute;
	top: 0;*/
}
/* Carousel base class */
.carousel {
	min-width: 100%;
	height: 172px;
	margin: 0;
}

/* DECLARE HEIGHTS BECAUSE OF POSITIONING OF IMG ELEMENT */
.carousel .item {
	height: 172px;
	background-color: #fff;
}
.carousel-inner > .item > img {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 100%;
	height: 172px;
}
	
.carousel-control{
	top: 40%;
	width: 41px;
	height: 74px;
}

/* FADE EFFECT */
.carousel-fade .carousel-inner .item {
	opacity: 0;
	-webkit-transition-property: opacity;
	transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}
.carousel-fade .carousel-control {
	z-index: 2;
}

.carousel-indicators {
	bottom: 0;
	left: 50%;
}
.carousel-indicators li {
	width: 10px;
	height: 10px;
	background-color: #9a9a98;
	border: 1px solid transparent;
	margin: 0 7px;
}
.carousel-indicators li:hover {
	background-color: #7d7d7d;
}
.carousel-indicators .active {
	width: 10px;
	height: 10px;
	margin: 0 7px;
	background-color: #ffffff;
	border: 1px solid #08c;
}
/*
Author: Alpesh Panchal
Author Email: alpesh88ww@gmail.com
*/