/*
 * NAME: Carousel_styles (jQuery)
 * AUTHOR: E.Jay
 * DATE: 2013-11-12
 *
 * USAGE:      style for the carousal wheel in the B.U.G. Members Home page
 *
 *     
 *
 */


#carouselContainer
{
  position: relative;
  width: 100%;
  height: 180px;
  background-color: #5F5522; /* white because there's some margin issue to correct */
  padding: 0px;
  margin: 0px;
}





/*
 * WIDTH =
 *
 * width of the carousel with the arrows
 * thumbnails ( 235px * 3 ) + padding ( 10px * 3 ) + left/right arrow ( 40 * 2 ) = 815
 *
 */
#carouselOuter
{
  position: relative;
  background-color: #5F5522;
  width: 815px;
  height: 180px;
/*  left: 56%;            was left: 55% */
/*  margin-right: 0px;   */
/*  margin-left: -490px;  was -331 before centering, now -325 */
margin-left: 92px;
padding: 0px;
}





/*
 * WIDTH =
 *
 * width of the visible carousel
 * thumbnails ( 235px * 3 ) + padding ( 10px * 3 ) = 735
 *
 */
#carouselInner
{
  float: left;
  width: 735px;
  overflow: hidden; /* anything outside of the carousel's limits will be hidden */
  background: #5F5522;
}




/*
 * LEFT =
 *
 * allows "off-screen" area of carousel to have images loaded before animation
 * thumbnails ( 235px * 2 ) + padding ( 10px * 2 ) = 490
 *
 *
 * WIDTH =
 *
 * ( 235px + 10px ) * 7 = 1715px || ( thumbnail + padding ) * max # of thumbnails = 1715px
 */
#carouselUL
{
  position: relative;
  life-style-type: none;
  left: -490px;
  margin: 0px;
  padding: 0px;
  width: 1715px;
}




#carouselUL li
{
  float: left; /* important for inline positioning of the list items */
  width: 235px; /* width of the thumbnails */
  height: 157px; /* height of the thumbnails */
  padding: 0px;
  background: #5F5522;
  margin-top: 10px;
  margin-right: 5px;
  margin-bottom: 10px;
  margin-left: 5px;
  text-align: center;
}



#carouselUL li img
{
  cursor: pointer;
  cursor: hand;
  border: 0px;
  width: 235px;
  height: 157px;
}



#scrollLeft, #scrollRight
{
  float: left;
  height: 158px;
  width: 40px;
  background: #5F5522;
  cursor: pointer;
  cursor: hand;
  margin: 0px;
  padding-top: 10px;
}


#scrollLeft img
{
  cursor: pointer;
  cursor: hand;
  border: 0px;
  width: 40px;
  height: 158px;
  margin: 0px;
}


#scrollRight img
{
  cursor: pointer;
  cursor: hand;
  border: 0px;
  width: 40px;
  height: 158px;
  margin: 0px;
}


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;
}