#slideshow {
	margin: 0 auto;
 border: 0px red solid;
	width: 740px; /* 640 */
 height: 458px;
	background-color: white;
	position: relative;
}
#slideshow #slidesContainer {
  border: 0px green solid;
  margin: 0 auto;
  width: 670px; /* 540 */
  height: 458px;
  overflow: auto; /* allow scrollbar */
  position: relative;
}
#slideshow #slidesContainer .slide {
  margin: 0 auto;
  width: 650px; /* 540 reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height: 458px;
}

/**
 * Slideshow controls style rules.
 */
.control {
  display: block;
  width: 32px; /* 39 */
  height: 32px;
  text-indent: -10000px;
  position: absolute;
  cursor: pointer;
}
#leftControl {
  top: 200px;
  left: 0;
  background-color: white;
  background-image: url(../img/back.png);
  background-repeat: no-repeat;
  background-position: 0 0;
}
#rightControl {
  top: 200px;
  right: 0;
  background-color: white;
  background-image: url(../img/next.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}

a.slink:link, a.slink:visited, a.slink:active {color: white; font-family: Arial; font-size: 17px; font-weight: bold; text-decoration: none;}
a.slink:hover                                 {color: white; font-family: Arial; font-size: 17px; font-weight: bold; text-decoration: underline;}


