@charset "UTF-8";
/* CSS Document for Java Slideshow */


#slideshow {
  margin:0 auto;
  width:970px;
  height:340px;
  top:30px;
  position:relative;

}


#slideshow #slidesContainer {
  width:900px;
  height:340px;
  overflow:auto; /* allow scrollbar */
  border:5px solid #333;
  position:relative;
  background-color:#333;
}

#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:880px; /* reduce by 20 pixels to avoid horizontal scroll */
  height:340px;
}
/**
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:34px;
  height:30px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
 
}
#leftControl {
 top:310px;
 left:810px;
  background:transparent url(../images/leftbutton.png) no-repeat 0 0;
   z-index: 200;
}
#rightControl {
  bottom:0px;
  left:850px;
  background:url(../images/rightbutton.png) no-repeat 0 0;
   z-index: 200;
}

#leftGhost {
  display:block;
  width:34px;
  height:30px;
  text-indent:-10000px;
  position:absolute;
  
 top:310px;
 left:810px;
  background:url(../images/leftbutton-done.png) no-repeat 0 0;
   z-index: 100;
}

#rightGhost {
  position:absolute;
  display:block;
  width:34px;
  height:50px;
  text-indent:-10000px;
  
   top:310px;
  left:850px;
  background:url(../images/rightbutton-done.png) no-repeat 0 0;
   z-index: 100;
}

