/* carousel */
.media-carousel 
{
  margin-bottom: 0;
  padding: 0 40px 30px 40px;
  margin-top: 30px;
  overflow: hidden;
}
/* Previous button  */
.media-carousel .carousel-control.left 
{
  left: -10px;
  background-image: none;
  background: none repeat scroll 0 0 rgba(255, 83, 0, 0);
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  color: #444;
  font-size: 60px;
}
/* Next button  */
.media-carousel .carousel-control.right 
{
  right: -12px !important;
  background-image: none;
  background: none repeat scroll 0 0 rgba(255, 83, 0, 0);
  border: 4px solid #FFFFFF;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  color: #444;
  font-size: 60px;
}
/* Changes the position of the indicators */
.media-carousel .carousel-indicators 
{
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: -19px;
}
/* Changes the colour of the indicators */
.media-carousel .carousel-indicators li 
{
  background: transparent;
}
.media-carousel .carousel-indicators .active 
{
  background: #333333;
}

.thumbnail{
  border: 1px solid transparent;
}

.logo
{
  filter: gray; /* IE6-9 */
  -webkit-filter: grayscale(1); /* Google Chrome, Safari 6+ & Opera 15+ */
  -webkit-transition: all .5s ease;
  -moz-transition: all .5s ease;
  -o-transition: all .5s ease;
  -ms-transition: all .5s ease;
  transition: all .5s ease;
}

.logo:hover
{
  filter: none; /* IE6-9 */
  -webkit-filter: grayscale(0); /* Google Chrome, Safari 6+ & Opera 15+ */
}

/* End carousel */