@CHARSET "UTF-8";

/*** 
CAROUSEL 
***/

div#myCarousel {
	/*height:auto;*/
	margin-bottom:35px;
}
/*
div#myCarousel img {
	margin:0px;
	width:100%;
	height:400px
}
*/


.carousel {
    height: 500px;
    margin-bottom: 60px;
}
.carousel-caption {
    z-index: 10;
    background-color:rgba(0,0,0,.4)
}
.carousel .item {
    background-color: #777;
    height: 500px;
}
.carousel-inner > .item > img {
    height: 500px;
    left: 0;
    min-width: 100%;
    position: absolute;
    top: 0;
}



/******************* fade transition ****************/
.carousel .item {
    left: 0 !important;
      -webkit-transition: opacity 1.4s; /*adjust timing here */
         -moz-transition: opacity 1.4s;
           -o-transition: opacity 1.4s;
              transition: opacity 1.4s;
}
.carousel-control {
    background-image: none !important; /* remove background gradients on controls */
}
/* Fade controls with items */
.next.left,
.prev.right {
    opacity: 1;
    z-index: 1;
}
.active.left,
.active.right {
    opacity: 0;
    z-index: 2;
}

/******************* fade transition end ****************/

