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

#slideshow {
	margin:0 auto;
	width:740px;
	height:363px;
	position:relative;
	background-color: transparent;
	background-image: none;
	background-repeat: no-repeat;
	background-position: 0 0;
}
#slideshow #slidesContainer {
	margin:0 auto;
	width:660px;
	height:363px;
	overflow:auto; /* allow scrollbar */
	position:relative;
}
#slideshow #slidesContainer .slide {
	margin:0 auto;
	width:660px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
	height:363px;
}

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