@charset "UTF-8";
/* CSS Document */
<!--
/** 
 * Slideshow style rules.
 */
#slideshow {
	margin:0;
	width:673px;
	height:334px;
	position:relative;
}
#slideshow #slidesContainer {
  margin:0;
  width:673px;
  height:334px;
  overflow:hidden; /* allow scrollbar */
  position:relative;
}

#slideshow #slidesContainer .slide {
  margin:0;
  width:673px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:334px;
}

/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:17px;
  height:334px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
  z-index:3;
}

#leftControl {
  top:136px;
  left:4px;
  width:21px;
  background:transparent url(../img/control_left.gif) no-repeat 0 0;
}
#rightControl {
  top:140px;
  right:4px;
  width:21px;
  background:transparent url(../img/control_right.gif) no-repeat 0 0;
}



