/*
 | ------------------------------------------
 | Glide styles
 | ------------------------------------------
 | Here are slider styles
 | 
*/

.slider {
	position: relative;
	width:700px;
	height:184px;
	overflow: hidden;
	z-index:111;
	float:left;
}
	
	.slides {
		text-align:center;
		height: 184px;
		z-index:111;
		margin:0 !important;
		/* Simple clear fix */
		overflow: hidden;
		
		/**	
		 * Prevent blinking issue
		 * Not tested. Experimental.
		 */
		-webkit-backface-visibility: hidden;
		-webkit-transform-style: preserve-3d;

		/**
		 * Here is CSS transitions 
		 * responsible for slider animation in modern broswers
		 */
		-webkit-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
		   -moz-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
		    -ms-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
		     -o-transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
		        transition: all 500ms cubic-bezier(0.165, 0.840, 0.440, 1.000);
	}
	
	.slides li{list-style:none; z-index:111;}
	
		.slide {
			height: 184px;
			float: left;
			clear: none;
			width:720px;
			z-index:111;
			margin:0 !important;
			padding:0 !important;
		}


	.slider-arrows {}

		.slider-arrow {
			position: absolute;
			display: block;
			margin-bottom: -20px;
			z-index:111;
		}

			.slider-arrow--right { bottom: 55%; right:0; z-index:111; background:url(/f/i/slider_r.png) 0 0; width:22px; height:22px;}
			.slider-arrow--left { bottom: 55%; left:0; z-index:111; background:url(/f/i/slider_l.png) 0 0; width:22px; height:22px;}


	.slider-nav {
		z-index:111;
		position:absolute;
		bottom:12px;
		display:none;
	}

		.slider-nav__item {
			width: 18px;
			height: 18px;
			float: left;
			clear: none;
			display: block;
			margin: 0 12px;
			z-index:111;
		}