


	/*------------------------
	---------------- CONTENT
	------------------------*/
	
	/* You might want to change these options for the main container */
	#DDSlider, #DDSlider li {
		
		height: 300px;
		width: 730px;
		
	}
	
	/* images container - This is the most important container - Don't change important properties */
	#DDSlider {
		
		list-style: none !important;
		float: left;
		margin: 0 !important;
		padding: 0 !important;
		overflow: hidden !important;
		position: relative !important;
		
	}

		/* each slider item - Nothing to change here */
		#DDSlider li {
			
			display: none;
			float: left;
			margin: 0;
			position: absolute;
			width: 100%;
			
		}
		
		/* Don't edit this part */
		#DDSlider li.current {
			
			display: block;
			z-index: 2 !important;
			
		}
		
		/* Don't edit this part */
		#DDSlider li.next {
			
			display: block;
			z-index: 1 !important;
			
		}
		
		/* Don't edit this part - prevents inline lists from being hidden */
		#DDSlider li ul li {
			
			display: block !important;
			position: relative !important;
			
		}

/*------------------------
---------------- NAVS
------------------------*/

/*------------------------
--------------- ARROWS
------------------------*/

/* Sets position and main configs */
.slider_arrow_left,
.slider_arrow_right {

	bottom:7px;
	cursor:pointer !important;
	position:absolute;
	width:22px;
	height:22px;
	background:url(arrow_sprite.png) no-repeat;
	z-index:5;
	
}


/* left arrow */
.slider_arrow_left {
	background-position:top left;
	left:6px;
}

/* right arrow */
.slider_arrow_right {
	background-position:top right;
	left:34px;
}

/* left arrow hover */
.slider_arrow_left:hover {
	background-position:bottom left;
}

/* right arrow hover */
.slider_arrow_right:hover {
	background-position:bottom right;
}



/*------------------------
---------------- SELECTORS
------------------------*/

/* Sets configs for selectors containers : absolute positioned in relation to #slider */
.slider_selector, .slider_selector_dis {
	
	bottom: 12px;
	list-style: none;
	margin: 0 0 0 5px;
	position: absolute;
	right: 10px;
	z-index: 5;
	
}

	/* Sets image of selectors */
	.slider_selector li, .slider_selector_dis li {
		
		display: block !important;
		background: url(slider_selector.png) no-repeat top left;
		cursor: pointer;
		float: left;
		margin: 0 3px !important;
		height: 10px !important;
		position: relative !important;
		width: 10px !important;
		
	}
	
	/* Sets the current selector */
	.slider_selector li.current, .slider_selector_dis li.current {
		
		background: url(slider_selector_current.png) no-repeat top left;
		
	}

/* Disables the selectors */
.slider_selector_dis li {
	
	cursor: default !important;
	z-index: 5;
	
}

.slider_controls {
	
	float: left;
	position: relative;
	width: 100%;
	z-index: 15;
	
}

