/** 
 * Slideshow style rules.
 */
#slideshow {
	margin:0 auto;
	width:680px;
	height:240px;
	background-color:#333;
	position:relative;
	/*border:1px solid #ccc;*/
}
#slideshow #slidesContainer {
  margin:0 auto;
  width:680px;
  height:240px;
  overflow:auto; /* allow scrollbar */
  position:relative;
  background-color:#666;
}
#slideshow #slidesContainer .slide {
  margin:0 auto;
  width:680px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
  height:240px;
}

/** 
 * Slideshow controls style rules.
 */
.control {
  display:block;
  width:40px;
  height:228px;
  text-indent:-10000px;
  position:absolute;
  cursor: pointer;
}
#leftControl {
  top:0;
  left:0;
  background:transparent url(control_left.png) no-repeat 0 0;
  z-index:1000;
}
#rightControl {
  top:0;
  right:0;
  background:transparent url(control_right.png) no-repeat 0 0;
}

/** 
 * Style rules for Demo page
 */

.slide h2, .slide p {
  margin:15px;
}
/*
.slide img {
  float:right;
  margin:0 15px;
}
*/

.slide a{
text-decoration:none;
color: #FF6600;
}
#slideIndex
{
	display:auto;
	left: 330px;
	bottom: 6px;
	position: absolute;
}
.numbers
{
	display:none;
	/*display: inline-block;*/
	width: 16px;
	height: 16px;
	background: #ddd;
	color: #777;
	border: 1px solid #000;
	text-align: center;
	margin: 1px;
	cursor: pointer;
	font: normal 11px Tahoma;
}
.active
{
	color: #ddd;
	background: #777;
	border: 1px solid #333;
}


