	/*------------------------
	---------------- CONTENT
	------------------------*/
	
	/* You might want to change these options for the main container */
	#yourSliderId, #yourSliderId li {
	height: 399px;
	width: 962px;

		
	}
	
	/* images container - This is the most important container - Don't change important properties */
	#yourSliderId {
		
		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 */
		#yourSliderId li {
			
			display: none;
			float: left;
			margin: 0;
			position: absolute;
			width: 100%;
			
		}
		
		/* Don't edit this part */
		#yourSliderId li.current {
			
			display: block;
			z-index: 2 !important;
			
		}
		
		/* Don't edit this part */
		#yourSliderId li.next {
			
			display: block;
			z-index: 1 !important;
			
		}
		
		/* Don't edit this part - prevents inline lists from being hidden */
		#yourSliderId li ul li {
			
			display: block !important;
			position: relative !important;
			
		}
		
		/*------------------------------------- Left ARROW------------------------*/
		
		#left_arrow {
	position:absolute;
	left:8px;
	top:399px;
	width:24px;
	height:23px;
	z-index:6;
		}
		.slider_arrow_left {
			background: url(../images/left_arrow.png) no-repeat top left;
			width: 24px;
			height: 23px;
			z-index: 5;
			cursor: pointer !important;
			
		}


		/*------------------------------------- RIGHT ARROW------------------------*/
		
		#right_arrow {
	position:absolute;
	left:35px;
	top:399px;
	width:24px;
	height:23px;
	z-index:7;
		}
		
		.slider_arrow_right {
			background: url(../images/right_arrow.png) no-repeat top left;
			width: 24px;
			height: 23px;
			cursor: pointer !important;
			z-index: 5;
			
		}
					/*------------------------
	---------------- SELECTORS
	------------------------*/
	
	#selector {
	left:-177px;
	top:62px;
	width:69px;
	height:21px;
	z-index:8;
	float: left;
	position: absolute;
	width: 251px;
	z-index: 15;
}
	
	/* Sets configs for selectors containers : absolute positioned in relation to #slider */
	.slider_selector, .slider_selector_dis {
		
		bottom: 10px;
		list-style: none;
		margin: 0 0 0 10px;
		position: absolute;
		right: 10px;
		z-index: 5;
		
	}
	
		/* Sets image of selectors */
		.slider_selector li, .slider_selector_dis li {
			
			display: block !important;
			background: url(../images/slider_selector.png) no-repeat top left;
			cursor: pointer;
			float: left;
			margin: 0 1px !important;
			height: 16px !important;
			position: relative !important;
			width: 16px !important;
			
		}
		
		/* Sets the current selector */
		.slider_selector li.current, .slider_selector_dis li.current {
			
			background: url(../images/slider_selector_current.png) no-repeat top left;
			
		}
	
	/* Disables the selectors */
	.slider_selector_dis li {
		
		cursor: default !important;
		z-index: 5;
		
	}
