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

/** 

 * Slideshow style rules.

 */

#slideshow {
	margin:0 auto;
	width: ;
	height:400px;
	position:relative;
}
#slideshow #slidesContainer {
	margin:0;
	width:500px;
	height:500px;
	overflow:auto; /* allow scrollbar */
	position:relative;
}
#slideshow #slidesContainer .slide {
	margin:0 20px 0 0;
	width:500px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
	height:500px;
}
/** 

 * Slideshow controls style rules.

 */

.control {
	display:block;
	width:30px;
	height:100px;
	text-indent:-10000px;
	position:absolute;
	cursor: pointer;
}
#leftControl {
	top:150px;
	left:0;
	background-color: transparent;
	background-image: url(images/control_left.gif);
	background-repeat: no-repeat;
	background-position: 0 0;
}
#rightControl {
	top:150px;
	right:0;
	background:transparent url(images/control_right.gif) no-repeat 0 0;
}
/** 

 * Style rules for Demo page

 */

* {
	margin:0;
	padding:0;
	
}


#pageContainer {
	margin:0 auto;
	width:960px;
}
#pageContainer h1 {
	display:block;
	width:960px;
	height:114px;
	text-indent: -10000px;
}
.slide h2, .slide p {
	margin:0px;
}
.slide h2 {
	font:italic 24px Georgia, "Times New Roman", Times, serif;
	color:#ccc;
	letter-spacing:-1px;
}
.slide img {
	float:right;
	margin:0 15px;
}

