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

/** 
 * Slideshow style rules.
 */
#slideshow {
	margin:0;
	margin-left: 25px;
	width:578px;
	height:390px;
	/*background:transparent url(../images/slideshow/bg_slideshow.jpg) no-repeat 0 0;*/
	position:relative;
}
#slideshow #slidesContainer {
  margin:0 auto;
  width:530px;
  height:390px;
  overflow:auto; /* allow scrollbar */
  position:relative;
}
#slideshow #slidesContainer .slide {
  margin:0;
  width:510px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:390px;
}

/** 
 * Slideshow controls style rules.
 */
.control {
 /* display:block;*/
  width:50px;
  height:390px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}
#leftControl {
  top:0;
  left:0;
  background:transparent url(../images/slides/LeftArrow.jpg) no-repeat 0 0;
}
#rightControl {
  top:0;
  right:0;
  background:transparent url(../images/slides/RightArrow.jpg) no-repeat 0 0;
}

.slide h2, .slide p {
  margin:15px;
}
.slide h2 {
  font:italic 24px Georgia, "Times New Roman", Times, serif;
  color:#ccc;
  letter-spacing:-1px;
}
.slide img {
  /*float:right;
  margin:0 15px;*/
  display: block;
  margin-left: 25px;
}

