/** 
 * Style rules for Demo page
 */
* {
  margin:0 auto;
  padding:0;
  display:block;
  float: none
  font:normal 11px Verdana, Geneva, sans-serif;
  background: #cccccc;
}

/** 
 * Slideshow style rules.
 */
#imageContainer {
	width:1000px;
	height:720px;
	overflow:auto; /* allow scrollbar */
	background: #cccccc;
	position:relative;
}

#imageContainer .image {
  float: left;
  width:1000px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:720px;
}



/** 
 * Slideshow controls style rules.
 */
#controls {
  width:200px;
  height:50px;
  cursor: pointer;
}

#backArrow {
	float: left;
	width: 100px;
	height: 50px;
	background: url('back.jpg') no-repeat #cccccc;
}

#nextArrow {
	float: right;
	width: 100px;
	height: 50px;
	background: url('next.jpg') no-repeat #cccccc;
}