﻿/* Carousel base class */
.carousel {
  /*margin-bottom: 60px;*/
      -webkit-box-shadow: 0px 0px 5px 0px #3d3d3d;
    -moz-box-shadow: 0px 0px 5px 0px #3d3d3d;
    box-shadow:  0px 0px 5px 0px #3d3d3d;
    z-index: 10;
}

.carousel-inner {

}

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    
  z-index: 10;
  text-shadow: 3px 3px #010101;
}

/* Declare heights because of positioning of img element */
.carousel .item {
  width:100%;
  height:350px;
  max-height: 350px;
  background-color:#FFFFFF;
  
}
.carousel .item .container {
  padding:0;
  
}

.carousel img {
  position: absolute;

  /* Set rules to fill background */
  min-height: 100%;
  min-width: 800px;
	
  /* Set up proportionate scaling */
  width: 100%;
  height: auto;



  /* Set up positioning */
  top: 0;
  left: 0;
}