/*** Slideshow style rules. */
#slideshow {
	margin:0 auto;
	width:710px;
	height:530px;
	position:relative;
}
#slideshow #slide-container-2 {
  margin:0 auto;
  width:560px;
  height:530px;
  overflow:auto; /* allow scrollbar */
  position:relative;
}
#slideshow #slide-container-2 .slide {
  margin:0 auto;
  width:540px; /* reduce by 20 pixels of #slide-container-2 to avoid horizontal scroll */
  height:455px;
}

/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:55px;
  height:64px;
  position:absolute;
  cursor: pointer;
}
#leftControl {
  top: 120px;
  left:0;
  background:transparent url(../images/control_left.png) no-repeat 0 0;
}
#rightControl {
  top: 120px;
  right:0;
  background:transparent url(../images/control_right.png) no-repeat 0 0;
}

#slidebackground {
	background: #fff;
	background: -moz-linear-gradient(top,  #ffffff 0%, #f7f7f7 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f7f7f7));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f7f7f7 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#f7f7f7 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#f7f7f7 100%);
	background: linear-gradient(top,  #ffffff 0%,#f7f7f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f7f7f7',GradientType=0 );
}