


	/*------------------------
	---------------- CONTENT
	------------------------*/
	
	.yourSliderId_container { height: 260px; margin-bottom:20px;}
	
	/* You might want to change these options for the main container */
	#yourSliderId, #yourSliderId li {
		
		height: 260px;
		/*width: 640px;*/
		width: 100%;
		
	}
	
	#yourSliderId img, #yourSliderId li img {
		width: 100%;
	}
	
	/* 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;
		/*margin-top:10px !important;*/
		
		
	}
	
	.box {  
		box-sizing:border-box;
		-moz-box-sizing:border-box;
		-webkit-box-sizing:border-box;
		border:10px solid #f1f1f1;
		
		

		/*margin: -3px;*/
	}

		/* each slider item - Nothing to change here */
		#yourSliderId li {
			
			display: none;
			float: left;
			margin: 0;
			position: absolute;
			width: 100%;
			background:#FFF;
		
		}
		
		/* 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;
			
		}


/*------------------------
	---------------- NAVS
	------------------------*/


		/*------------------------
		--------------- LEFT ARROW
		------------------------*/
		
		/* Sets position and main configs */
		.slider_arrow_left {
			
			bottom: 117px;
			cursor: pointer !important;
			float: left;
			height: 22px;
			left: 0px;
			position: absolute;
			width: 22px;
			z-index: 5;
			
		}
		
		/* left arrow image */
		.slider_arrow_left {
			
			background: url(../img/left_arrow.png) no-repeat top left;
			
		}


		/*------------------------
		-------------- RIGHT ARROW
		------------------------*/
		
		/* Sets position and main configs */
		.slider_arrow_right {
			
			bottom: 117px;
			cursor: pointer;
			float: right;
			height: 22px;
			right: 1px;
			position: absolute;
			width: 22px;
			z-index: 5;
			
		}
		
		/* Right arrow Background */
		.slider_arrow_right {
			
			background: url(../img/right_arrow.png) no-repeat top left;
			
		}


	/*------------------------
	---------------- SELECTORS
	------------------------*/
	
	/* Sets configs for selectors containers : absolute positioned in relation to #slider */
	.slider_selector, .slider_selector_dis {
		
		bottom: 20px;
		list-style: none;
		margin: 0 0 0 5px;
		position: absolute;
		right: 17px;
		z-index: 5;
		
	}
	
		/* Sets image of selectors */
		.slider_selector li, .slider_selector_dis li {
			
			display: block !important;
			background: url(../img/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(../img/slider_selector_current.png) no-repeat top left;
			
		}
	
	/* Disables the selectors */
	.slider_selector_dis li {
		
		cursor: default !important;
		z-index: 5;
		
	}
	
	.slider_container {
		
		float: left;
		position: relative;
		width: 100%;
		z-index: 15;
		
	}
	
/* Title style */

.slider_image_div {position: relative;
   width: 100%; /* for IE 6 */
}

.slider_image_div h2 {position: absolute;
   top: 0px;
   width: 100%;
}

.slider_image_div h2 span {
   color: white;
   font-size:16px;
   line-height:36px;
   
   background: rgb(0, 0, 0); /* fallback color */
   background: rgba(0, 0, 0, 0.7);
   padding: 10px;
}

.slider_image_div h2 span a { color:#FFFFFF !important;}
.slider_image_div h2 span a:hover { color:#cccccc !important;}      