/*
 | ------------------------------------------
 | Glide styles
 | ------------------------------------------
 | Here are slider styles
 | 
*/
.slider-cont {
	height: 445px;
    width: 680px;
}
.RowItemBox {
		width: 100% !important ;
				height: 100% !important
}
.slider {
	position: relative;
	width: 100%;

	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);
	}
	
	.slide {
		height: 100%;
		float: left;
		clear: none;
		list-style-type: none;
	}


	.slider-arrow {
		position: absolute;
		display: block;
		margin-top: 20px;
		padding: 20px;
	}

	.slider-arrow:hover {
		opacity: 0.7;
	}


			.slider-arrow--right { 
			bottom: 50%; right: 2.5%; 
			
			background: url(/img/slide/st-right-slider.png) no-repeat center center;
			}
			.slider-arrow--left { bottom: 50%; left: 2.5%; 
			background: url(/img/slide/st-left-slider.png) no-repeat center center;
			}


	.slider-nav {
		position: absolute;
		bottom: 0;
		display: table-cell;
		vertical-align: middle;
	}

	.slider-nav__item {
			border-radius: 50%;
			display: inline-block;
			padding: 4px;
			font-size: 4px;
			margin-left: 4px;
			margin-right: 4px;
			cursor: pointer;
			background: #B2B3B3;
			margin-bottom: 1px;
			vertical-align: middle;
			border: solid 1px #fff;
		}
		
	.slider-nav__item--current {
		background: #fff;
		border: solid 1px #2C2B2A;	
	}
	
	ul.slides {
		margin: 0;
		padding: 0;
	}
	
	.RowItemBox {
		background-repeat: no-repeat !important;
	}