<!--
/** 
 * Slideshow style rules.
 */
#slideshow {
	margin:0 auto;
	width:1008px;
	height:570px;
	position:relative;
	background: #222;
}
#slideshow #slidesContainer {
  margin:0 auto;
  width:928px;
  height:570px;
  overflow:auto; /* allow scrollbar */
  position:relative;
}
#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:908px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:570px;
}

/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:39px;
  height:570px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}
#leftControl {
  top:0;
  left:0;
  background: url(images/control_left.png) no-repeat 0 0;
}
#rightControl {
  top:0;
  right:0;
  background: url(images/control_right.png) no-repeat 0 0;
}

