@charset "utf-8";
/* CSS Document */
#slideshow {
	margin:0 auto;
	width:294px;
	height:200px;
	position:relative;
}
#slideshow #slidesContainer {
  margin:0 auto;
  width:230px;
  height:200px;
  overflow:auto; /* allow scrollbar */
  position:relative;
}
#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:200px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
}

/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:27px;
  height:200px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}
#leftControl {
  margin-top:30px;
  top:0;
  left:0;
  background:transparent url(../images/arrow-left.gif) no-repeat 0 0;
}
#rightControl {
  margin-top:30px;
  top:0;
  right:0;
  background:transparent url(../images/arrow-right.gif) no-repeat 0 0;
}

/** 
 * Style rules for Demo page
 */
#pageContainer {
  margin:0 auto;
  width:294px;
}
.slide h2, .slide p {
  margin-top:50px;
}
.slide img {
  float:right;
  margin-right:410px;
}

.slide-text a:link, .slide-text a:visited, .slide-text a:active {
font-family:Tahoma;
font-size:12px;
color:#666666;
text-decoration:none;
text-align:center;
font-weight:bold;
float:right;
display:block;
margin-top:20px;
margin-right:395px;
} 
.slide-text a:hover {
text-decoration:underline;
} 
