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

#slideshow {
	margin:0 auto;
	width:420px;
	height:320px;
	position:relative;
	
}
#slideshow #slidesContainer {
  margin-left:60px;
  margin-top:20px;
  width:300px;
  height:320px;
  overflow:auto; /* allow scrollbar */  
  position:relative;
}
#slideshow #slidesContainer .slide {
    margin:0 auto;
	width:300px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  	height:320px;
	font-family:Arial, Helvetica, sans-serif; }

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


