
.block { float: left; width: 100%; margin-bottom: 50px; }
#slider-wrapper { position: relative; }
#slider-selector { list-style: none; margin: 0; padding: 0; position: absolute; right: 10px; bottom: 10px; z-index: 100; }
#slider-selector li { background: url(/images/slider-selector.png) no-repeat 50% 50%; width: 13px; height: 13px; float: left; cursor: pointer; }
#slider-selector li.current { background: url(/images/slider-current.png) no-repeat 50% 50%; }
#slide-left, #slide-right { position: absolute; top: 0; width: 200px; height: 100%; z-index: 90; cursor: pointer; }
#slide-left { left: 0; background: url(/images/slide-left.png) no-repeat 25px 50%; }
#slide-right { right: 0; background: url(/images/slide-right.png) no-repeat 150px 50%; }




	/*------------------------
	---------------- CONTENT
	------------------------*/
	
	/* You might want to change these options for the main container */
	#slider, #slider li {
		width: 100%;
		max-width: 960px;
		
	}
	
	/* images container - This is the most important container - Don't change important properties */
	#slider {
		
		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 */
		#slider li {
			
			display: none;
			float: left;
			margin: 0;
			position: absolute;
			width: 100%;
			
		}
		
		#slider li img {
			width: 100%;
		}
			
		
		/* 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;
			
		}
