/*!
 * Bootstrap v2.0.4
 *
 * 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.
 */

@import url(http://fonts.googleapis.com/css?family=Pontano+Sans);


.carousel-next {
	position: relative;
	
}

.carousel-inner {
  position: relative;
  width: 100%;
}


.carousel .item {
  
  display: none;
  -webkit-transition: 1s fade left;
     -moz-transition: 1s fade left;
      -ms-transition: 1s fade left;
       -o-transition: 1s fade left;
          transition: 1s fade left;
}


.carousel .item > img {
  display: block;
  line-height: 1;
}

.carousel .active,
.carousel .next,
.carousel .prev {
  display: block;
}

.carousel .active {
  left: 0;
}

.carousel .next,
.carousel .prev {

  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: 50%;
    left: 15px;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    font-size: 100px;
    line-height: 30px;
    color: rgba(200, 204, 206, 1);
    text-align: center;
    border: 0px solid #FFF;
    border-radius: 0px;
    opacity: 0.75;
    text-decoration: none;
	font-family:Arial, Helvetica, sans-serif;
}

.carousel-control.right {
	right: 15px;
	left: auto;
}

.carousel-control.left {
	left: 15px;
	right: auto;
		
}

.carousel-control:hover {
  color: #fff;
  	font-family:Arial, Helvetica, sans-serif;

}


.carousel-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 10px 15px 10px;
	font-family: Garamond;
	font-style: italic;
	font-size: 3em;
	color: #fff;
}



.carousel-caption h4,
.carousel-caption p {
  color: #ffffff;
}

.carousel-caption a, .carousel-caption a:hover, .carousel-caption a:visited {
	color: rgba(233, 154, 105, 1);
	text-transform: underline;
}

