/** 
 * Slideshow style rules.
 */
 
#slideshow {
	margin:0 auto;
	width:110px;
	height:85px;
	background:transparent;
	position:relative;
}
#slideshow #slidesContainer {
  margin:0px auto;
  width:95px;
  height:80px;
  overflow:auto; /* allow scrollbar */
  position:relative;

}
#slideshow #slidesContainer .slide {;
  margin:20px auto;
  padding-left:20px auto;
  width:80px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:80px;
}

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

#leftControl {
  top:30px;
  left:-15px;
  background:transparent url(../images/arrows/arrow_left.png) no-repeat 0 0;
}

#leftControl:hover{
  top:30px;
  left:-15px;
  background:transparent url(../images/arrows/arrow_left_hover.png) no-repeat 0 0;
}


#rightControl {
  top:30px;
  right:0px;
  background:transparent url(../images/arrows/arrow_right.png) no-repeat 0 0;
}

#rightControl:hover {
  top:30px;
  right:0px;
  background:transparent url(../images/arrows/arrow_right_hover.png) no-repeat 0 0;
}