/*
 | ------------------------------------------
 | Glide styles
 | ------------------------------------------
 | Here are slider styles
 | 
*/

.slider {
	position: relative;
	width: 595px;
	height: auto;
	overflow: hidden;
}

	
	.slides {
		height: 100%;
		
		/* 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);
				
				padding:5px 2px 0px 0px;
	}
	
	li{list-style:none;}
	
		.slide {
			height: 100%;
			width:558px;
			float: left;
			clear: none;
		}


	.slider-arrows {}

		.slider-arrow {
			position: absolute;
			display: block;
			margin-bottom: -20px;
			padding: 0px;
		}

			.slider-arrow--right { bottom: 53%; right: 0px; color:#F00; background-image:url(../images/arrow_right.png); height:24px; width:26px; }
			.slider-arrow--left { bottom: 53%; left: 0px; color:#F00; background-image:url(../images/arrow_left.png); height:24px; width:26px; }


	.slider-nav {
		position: absolute;
		bottom: 10px;
	}

		.slider-nav__item {
			width: 14px;
			height: 14px;
			float: left;
			clear: none;
			display: block;
			margin: 0 4px;
			background-image:url(../images/bullets.png); 
		}

				.slider-nav__item:hover {  
					background-image:url(../images/bullets.png); 
					background-position:-26px 0px;
					width: 14px;
					height: 14px; 
				}
				.slider-nav__item--current {
					background-image:url(../images/bullets.png); 
					background-position:-26px 0px;
					width: 14px;
					height: 14px;   }