/* Slideshow style rules. */
#slideshow {
	width: 880px;
	height:600px;
	margin:0px;
	float: left;
}
#slideshow #slidesContainer {
	width:800px;
	height:600px;
	overflow:hidden; /* allow scrollbar */
	margin: 0px auto; 
	box-shadow:0px 2px 5px rgba(0,0,0,0.7);
}
#slideshow #slidesContainer .slide {
	width:800px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
	height:600px;
	margin:0 auto;
}
/** 
 * Slideshow controls style rules.
 */
.control {
	display:block;
	float:left;
	width:40px;
	height: 100%;
	text-indent:-10000px;
	cursor: pointer;
	background:#333;
}
#leftControl {
	background: url(slider/arrows.png) no-repeat center left;
	float: left;
}
#rightControl {
	background: url(slider/arrows.png) no-repeat center right;
	float: right;
}

/** 
 * Style rules for Demo page
 */
#pageContainer {
	float:none;
	margin:0 auto;
	width: 960px;
	height: 600px;
	clear: left;
}
@media screen and (min-width: 481px) and (max-width: 959px) {
#pageContainer { width:100%;}	
#slideshow { width:80%;}
#slideshow #slidesContainer { width:100%;}
}
#pageContainer h1 {
	display:block;
	width:960px;
	height:114px;
	text-indent: -10000px;
}
.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;
}
#footer {
  height:100px;
}
#footer p {
  margin:30px auto 0 auto;
  display:block;
  width:560px;
  height:40px;
}
#slideInner_{ -webkit-transition:all ease 2s;}
/* slideshow fin */