@charset "utf-8";
/* CSS Document */

#slideshow {
	width:372px;
	height:250px;
	position:relative;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 0 0;
	margin: 0;
}
#slideshow #slidesContainer {
	width:306px;
	height:250px;
	overflow:auto; /* allow scrollbar */
	position:relative;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#slideshow #slidesContainer .slide {
	width:400px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
	height:300px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/** 
 * 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(../images/control_left.jpg);
	background-repeat: no-repeat;
	background-position: 0 0;
	height: 300px;
}
#rightControl {
	top:0;
	right:0;
	background-color: transparent;
	background-image: url(../images/control_right.jpg);
	background-repeat: no-repeat;
	background-position: 0 0;
	height: 300px;
}
.slide h2, .slide p {
  margin:15px;
}
.slide h2 {
	color:#FFFFCC;
	letter-spacing:-1px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	font-style: italic;
}
.slide img {
	float:left;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0px;
	margin-right: 50px;
}

