/** 
 * Slideshow style rules.
 */
#slideshow {
	margin:0;
	width:696px;
	height:310px;
	background:transparent url('../img/bg_slideshow.jpg') no-repeat 0 0;
	position:relative;
}
#slideshow #slidesContainer {
  margin:0;
  width:696px;
  height:310px;
  overflow:hidden; /* allow scrollbar */
  position:relative;
}
#slideshow #slidesContainer .slide {
  margin:0;
  width:696px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:310px;
}

/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:46px;
  height:40px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
  z-index:99;
}
#leftControl {
  top:140px;
  left:0;
  background:transparent url('../img/arrow-left.png') no-repeat 0 0;
  z-index:99;
}
#rightControl {
  top:140px;
  right:0;
  background:transparent url('../img/arrow-right.png') no-repeat 0 0;
  z-index:99;
}