@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0)
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight
}

.carousel {
	position: static;
}
.carousel-caption {
  position: absolute;
  right: 0;
  left: 10%;
  z-index: 10000;
  padding: 20px;
  color: #fff;
  text-align: left;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
  background: rgba(255,255,255,.25);
  box-shadow: 0px -10px 30px 0px rgba(0,0,0,.5);
  width: 30%;
  margin-top: 0;
  bottom: 25%;
  min-width: 300px;
}
.carousel-caption h3 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin:0;
  text-align: left;
}
.carousel-caption h3 a {
  color: #fff;
  text-decoration: none;
}
.carousel-caption h3 a:hover {
  color: #fff;
  text-decoration: underline;
}

@media only screen and (min-width: 768px) {
	.carousel-caption h3 {
		font-size: 32px;
	}
}
.carousel-item img {
	height: auto!important;
	width:100%;
	min-width: 500px;
}


.carousel-item.active .carousel-caption {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.carousel-item.active .carousel-caption.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.carousel-item.active .carousel-caption.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.carousel-item.active .carousel-caption.flipOutX,
.carousel-item.active .carousel-caption.flipOutY,
.carousel-item.active .carousel-caption.bounceIn,
.carousel-item.active .carousel-caption.bounceOut {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.carousel-item .carousel-caption.fadeIn,
.carousel-item .carousel-caption.fadeInDown,
.carousel-item .carousel-caption.fadeInDownBig,
.carousel-item .carousel-caption.fadeInLeft,
.carousel-item .carousel-caption.fadeInLeftBig,
.carousel-item .carousel-caption.fadeInRight,
.carousel-item .carousel-caption.fadeInRightBig,
.carousel-item .carousel-caption.fadeInUp,
.carousel-item .carousel-caption.fadeInUpBig{
  opacity:0;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;	
}