@charset "utf-8";
/* CSS Document */


#slideshow {
	margin-left: auto;
	margin-right: auto;
	width:1000px;
	height:680px;
	position:relative;
	display:block;
	padding-top: 5px;
	clear:both;
}

#slideshow #slidesContainer {
  margin:0 auto;
  width:950px;
  height:680px;
  overflow:auto; /* allow scrollbar */
  position:relative;
}

#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:950px; /* reduce by 20 pixels to avoid horizontal scroll */
  height:680px;
  text-align:center;

}

/**
 * Slideshow controls style rules.
 */
.control {
  width:39px;
  height:680px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
  
}

#leftControl {
  top:0;
  left:-25px;

  background:transparent url(../images/button-prev.png) no-repeat 0 0;
  background-position:center;
  
}

#rightControl {
  top:0;
  right:-25px;

  background:transparent url(../images/button-next.png) no-repeat 0 0;
  background-position:center;
}



