/* CSS Document */.carousel-indicators{	display: none;}.carousel-caption-header {    position: absolute;	line-height: 40px;    bottom: 84px;    left:50px;  	color:#fff;   	font-size: 42px;  	/*background-color: rgba(49, 55, 68, 0.9);*/	padding: 5px 15px;	-webkit-border-radius: 12px;	-webkit-border-bottom-left-radius: 0;	-moz-border-radius: 12px;	-moz-border-radius-bottomleft: 0;	border-radius: 12px;	border-bottom-left-radius: 0;	text-shadow: 2px 2px #333;	}.carousel-caption-subheader {    position: absolute;	height: 34px;    bottom: 50px;    left:50px;  	color:#333947;   	font-size: 18px;  	background-color: rgba(121, 188, 38, 0.9);	padding: 3px 15px;	-webkit-border-bottom-right-radius: 12px;	-webkit-border-bottom-left-radius: 12px;	-moz-border-radius-bottomright: 12px;	-moz-border-radius-bottomleft: 12px;	border-bottom-right-radius: 12px;	border-bottom-left-radius: 12px;	}.carousel-item{	width:100%;		}.carousel-inner{	width:100%;		}.carousel-inner img{	width:100%;			}/* Carousel Fading slide */.carousel-fade .carousel-inner { background-color: transparent!important; }.carousel-fade .carousel-control { z-index: 2; }  .carousel-fade .carousel-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 .carousel-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 > .carousel-item.next,    .carousel-fade .carousel-inner > .carousel-item.active.right {      opacity: 0;      -webkit-transform: translate3d(0, 0, 0);              transform: translate3d(0, 0, 0);    }    .carousel-fade .carousel-inner > .carousel-item.prev,    .carousel-fade .carousel-inner > .carousel-item.active.left {      opacity: 0;      -webkit-transform: translate3d(0, 0, 0);              transform: translate3d(0, 0, 0);    }    .carousel-fade .carousel-inner > .carousel-item.next.left,    .carousel-fade .carousel-inner > .carousel-item.prev.right,    .carousel-fade .carousel-inner > .carousel-item.active {      opacity: 1;      -webkit-transform: translate3d(0, 0, 0);              transform: translate3d(0, 0, 0);    }}/* Carousel Control custom */.carousel-control .control-icon {  font-size: 48px;  height: 30px;  margin-top: -15px;  width: 30px;  display: inline-block;  position: absolute;  top: 50%;  z-index: 5;  }  .carousel-control .prev { margin-left:  -15px;  left: 50%; 	  display: none;} /* Prev */  .carousel-control .next { margin-right: -15px; right: 50%; 	    display: none;} /* Next *//* Removing BS background */.carousel .control-box { opacity: 0; }a.carousel-control.left  { left: 0; background: none; border: 0;}a.carousel-control.right { right: 0; background: none; border: 0;}/* Animation */.control-box, a.carousel-control, .carousel-indicators li {  -webkit-transition: all 250ms ease;  -moz-transition: all 250ms ease;  -ms-transition: all 250ms ease;  -o-transition: all 250ms ease;  transition: all 250ms ease;     /* hardware acceleration causes Bootstrap carousel controlbox margin error in webkit */  /* Assigning animation to indicator li will make slides flicker */  } /* Hover animation */.carousel:hover .control-box { opacity: 1; }.carousel:hover a.carousel-control.left { left: 15px; }.carousel:hover a.carousel-control.right { right: 15px; }  /* Carouse Indicator */.carousel-indicators li.active,.carousel-indicators li { border: 0; }.carousel-indicators li {  background: #666;  margin: 0 3px;  width: 12px;  height: 12px;  }.carousel-indicators li.active {   margin: 0 3px;  }