/*
 * NAME: Carousel_styles (jQuery)
 * AUTHOR: E.Jay
 * DATE: 2013-09-25
 *
 * USAGE:      style for the carousal                        
 *
 *     
 *
 */
#carouselContainer, #carouselContainer2, #carouselContainer3
{
  position: relative;
  width: 100%;
  height: 149px;
  background-color: #FFFFF;    
}


#carouselOuter, #carouselOuter2, #carouselOuter3
{
  position: relative;
  background-color: #FFFFFF;
  width: 1342px; /* width of the carousel with the arrows */
  left: 25%; 
  margin-left: -331px;
}


#carouselInner, #carouselInner2, #carouselInner3
{
  float: left;
  width: 1190px; /* this is the width of the visible carousel */
  overflow: hidden; /* anything outside of the carousel's limits will be hidden */
  background: #000000;
}



#carouselUL, #carouselUL2, #carouselUL3
{
  position: relative;
  life-style-type: none;
  left: -440px; /* allows "off-screen" area of carousel to have images loaded before animation */
  margin: 0px;
  padding: 0px;
  width: 8500px;
  padding-bottom: 10px;
}


#carouselUL li
{
  float: left; /* important for inline positioning of the list items */
  width: 160px; /* width of the thumbnails */
  height: 128px;
  padding: 0px;
  background: #000000;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
}


#carouselUL2 li
{
  float: left; /* important for inline positioning of the list items */
  width: 160px; /* width of the thumbnails */
  height: 128px;
  padding: 0px;
  background: #000000;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
}


#carouselUL3 li
{
  float: left; /* important for inline positioning of the list items */
  width: 160px; /* width of the thumbnails */
  height: 128px;
  padding: 0px;
  background: #000000;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: center;
}


#carouselUL li img
{
  cursor: pointer;
  cursor: hand;
  border: 0px;
  width: 160px;
  height: 120px;
}


#carouselUL2 li img
{
  cursor: pointer;
  cursor: hand;
  border: 0px;
  width: 160px;
  height: 120px;
}


#carouselUL3 li img
{
  cursor: pointer;
  cursor: hand;
  border: 0px;
  width: 160px;
  height: 120px;
}


#scrollLeft, #scrollRight, #scrollLeft2, #scrollRight2, #scrollLeft3, #scrollRight3
{
  float: left;
  height: 148px;
  width: 76px;
  background: #FFFFFF;
  cursor: pointer;
  cursor: hand;
}


img.closeX
{
  float: right;
  margin: 0px;
  border: none;
}


#carouselShade
{
  display: none;
  background: #323232;
  position: fixed; 
  left: 0; 
  top: 0;
  width: 100%; 
  height: 100%;
  z-index: 100;
}