/** 
 * Slideshow style rules.
 */
#slideshow {
	margin:60px auto;
	width:980px;
	height:360px;
	position:relative;
	z-index:1;
}
	#slideshow #slidesContainer {
		margin:0 auto;
		width:940px;
		background: url("../img/colors/beige/slider/slider_bg.png") no-repeat 0 0;
		height:360px;
		overflow:auto; /* allow scrollbar */
		position:relative;
	}
		#slideshow #slidesContainer .slide {
			margin:0 auto;
			width:940px; /* reduce by 20 pixels of #slidesContainer to avoid horizontal scroll */
			height:360px;
		}

/** 
 * Slideshow controls style rules.
 */
.control {
	display:block;
	width:20px;
	height:35px;
	text-indent:-10000px;
	position:absolute;
	cursor: pointer;
	top:162px;
}
	#leftControl {
		left:0;
		background:transparent url("../img/colors/beige/slider/buttons.png") no-repeat top left;
	}
		#leftControl:hover {
			background:transparent url("../img/colors/beige/slider/buttons.png") no-repeat bottom left;
		}
	#rightControl {
		right:0;
		background:transparent url("../img/colors/beige/slider/buttons.png") no-repeat top right;
	}
		#rightControl:hover {
			background:transparent url("../img/colors/beige/slider/buttons.png") no-repeat bottom right;
		}
		
#slideIndex {
	right: 40px;
	bottom: 20px;
	position: absolute;
}
.numbers {
	width: 18px;
	height: 18px;
	display: inline-block;
	text-align: center;
	margin-left: 3px;
	cursor: pointer;
	font: normal 0px Arial; /* Set a font size to display slides numbers */
	background:url("../img/colors/beige/slider/number_default.png") no-repeat;
	border:none;
	color:#FFFFFF;
}
.active {
	color: #FFFFFF; /* color: #ebe6d6; */
	background:url("../img/colors/beige/slider/number_active.png") no-repeat;
	border:none;
}

