@charset "UTF-8";
/* CSS Document */
/*Discover more carousel style*/
	
/*force the carousel position to the top of the page*/
.carousel{
  top: -120px;
  background-size: cover;
}

.carousel-inner > .item > img, .carousel-inner > .item > a > img {
  display: block;
  height: auto;
  width: 100%;
  line-height: 1;
  background-size: cover;
}

.carousel-inner {
	/*add more space on the bottom if the captions are too large*/
   margin-bottom:50px;
}

.carousel-img-responsive{
	width: 100%;
	height: auto;
	display:block;
} 

.carousel-caption {
  position: relative;
  left: auto;
  right: auto;
  font-size: 16px;    
  padding-top: 20px;
  top: 10px;
  width: 100%;
  margin-left: 0%;
  text-align: center;
	/*
	old style to justify text to the left of the screen,
	change width and margin-left to adjust caption position
	
	width: 70%;
	margin-left: 30%;
	text-align: left;
	
	*/
}

.carousel-caption h3 {
font-weight: bold;
    font-size: 18px;
}


ol.carousel-indicators {
  position: absolute;
  bottom:75px;
  margin: 0;
  left: 0;
  right: 0;
  width: auto;
}


@media screen and (max-width: 770px) {
	
	.carousel-caption {
		/*the caption gets more padding on the sides*/
        padding-top: 20px;
		padding-left: 20px;
		padding-right: 20px;

	}
	/*next 3 rules are to customize the carousel indicators for mobile sizes*/
	ol.carousel-indicators {
	  bottom:70px;
	}
	ol.carousel-indicators li {
	  width: 15px;
	  height: 15px;
	  margin-top: 20px;  
	}
	ol.carousel-indicators li.active, ol.carousel-indicators li:hover {
	  width: 15px;
	  height: 15px;
	  margin: 5px; 
	}

}

@media screen and (max-width: 480px) {
	
	/*adjust carousel indicators position a bit lower*/
	ol.carousel-indicators {
	  bottom:80px;
	}

}
	
/* Carousel Fading slide */
.carousel-fade .carousel-inner { background: #000; }
.carousel-fade .carousel-control { z-index: 2; }  
.carousel-fade .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.carousel-fade .next.left,
.carousel-fade .prev.right,
.carousel-fade .item.active { opacity: 1; }

.carousel-fade .active.left,
.carousel-fade .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}

/* Safari Fix */
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}
