


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

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

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

	/*------------------------
	---------------- SELECTORS
	------------------------*/
	
	/* Sets configs for selectors containers : absolute positioned in relation to #slider */
	.slider_selector, .slider_selector_dis {
		position: absolute;
		right: 0;
		top: 400px;
		list-style: none;
		margin: 0;
		z-index: 5;
	}
	
		/* Sets image of selectors */
		.slider_selector li, .slider_selector_dis li {
			
			display: block !important;
			background: url(../images/style/slider_navi.gif) top center no-repeat;
			cursor: pointer;
			float: left;
			padding: 0;
			margin: 0 3px !important;
			height: 15px !important;
			position: relative !important;
			width: 15px !important;
			
		}
		
		/* Sets the current selector */
		.slider_selector li.current, .slider_selector_dis li.current {
			
			background-position: bottom center;
			
		}
	
	/* Disables the selectors */
	.slider_selector_dis li {
		
		cursor: default !important;
		z-index: 5;
		
	}
	
	