
#slideshow {
	position: absolute;
	width: 820px;
	height: 270px;
	top: 100px;
	left: 15px;
}
#slideshow #slidesContainer {
  width: 820px;
  height: 270px;
  overflow: auto; /* allow scrollbar */
  
}
#slideshow #slidesContainer .slide {
  margin: 0 auto;
  width: 800px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height: 270px;
}

/** 
 * Slideshow controls style rules.
 */
 
.control {
  display: block;
  width: 80px;
  height: 280px;
  text-indent:-10000px;
  position: absolute;
  cursor: pointer;
}

#leftControl {
  top:0;
  left:0;
  width: 80px;
  background:transparent url(elements/slideshow_back.gif) no-repeat center bottom;
}

#leftControl:hover {
  background:transparent url(elements/slideshow_back_over.gif) no-repeat center bottom;
}

#rightControl {
  top:0;
  right:0;
  width: 80px;
  background:transparent url(elements/slideshow_foreward.gif) no-repeat center bottom;
}
#rightControl:hover {
  background:transparent url(elements/slideshow_foreward_over.gif) no-repeat center bottom;
}
