/*!
 * Bootstrap v2.1.1
 *
 * Copyright 2012 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */
.carousel {
  position: relative;
  line-height: 1;
}
.carousel-inner {
  width: 100%;
  position: relative;
  overflow: visible;
}
.carousel .item {
  display: none;
  position: relative;
  -webkit-transition: 0.6s ease-in-out left;
  -moz-transition: 0.6s ease-in-out left;
  -o-transition: 0.6s ease-in-out left;
  transition: 0.6s ease-in-out left;
}
.carousel .item > img,
.carousel .item > a img {
  display: block;
  line-height: 1;
  max-width: 100%;
}

.carousel .active,
.carousel .next,
.carousel .prev {
  display: block;
}
.carousel .item.active {
  left: 0;
}
.carousel .next,
.carousel .prev {
  position: absolute;
  top: 0;
  width: 100%;
}
.carousel .next {
  left: 100%;
}
.carousel .prev {
  left: -100%;
}
.carousel .next.left,
.carousel .prev.right {
  left: 0;
}
.carousel .active.left {
  left: -100%;
}
.carousel .active.right {
  left: 100%;
}
.carousel-control {
  position: absolute;
  top: 40%;
  left: 15px;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  font-size: 60px;
  font-weight: 100;
  line-height: 30px;
  color: #ffffff !important;
  text-align: center;
  background: #222222;
  border: 3px solid #ffffff;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  text-decoration: none !important;
}
.carousel-control.right {
  left: auto;
  right: 15px;
}
.carousel-control:hover {
  color: #ffffff;
  text-decoration: none !important;
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.carousel-caption {
  position: absolute;
  background: #333333;
  background: rgba(0, 0, 0, 0.75);
  padding: 15px 0 0;
}
.carousel-caption h2,
.carousel-caption h2 a,
.carousel-caption p {
  color: #ffffff;
  line-height: 100%;
  max-width: 94%;
  margin: 0 auto 15px;
  display: block;
}
.carousel-caption p {
  line-height: 150%;
}
.carousel-caption h2 a {
  margin: 0;
}
.carousel-caption p a {
  color: #fff;
}

/*********************************/

.carousel-indicators {
  position: absolute;
  bottom: 0px;
  /*bottom: -57px;*/
  left: 30%;
  z-index: 15;
  width: 100%;
  padding: 5px 0;
  margin-left: -30%;
  text-align: center;
  list-style: none;
  background-color: rgba(255,255,255,0.3);
}
.carousel-indicators li{
  display: inline-block;
  width: 14px;
  height: 14px;
  margin: 1px 3px !important;
  text-indent: -999px !important;
  cursor: pointer;
  background-color: #000 \9;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 0 !important;
}
.carousel-indicators .active {
  width: 16px;
  height: 16px;
  margin: 0px 3px !important;
  background-color: #fff;
  display: inline-block;
}
