/*
| ------------------------------------------
| Glide styles
| ------------------------------------------
| Here are slider styles
| 
*/

.slider {
	position: relative;
	width: 1000px;
	overflow: hidden;
	margin-right: auto;
	margin-left: auto;
	color: #FFF;
	height: 390px;
	top: -45px;
}
.slides {
	height: 429px;
	/* Simple clear fix */
	overflow: hidden;
	/**
* 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);
	width: 100%;
	text-align: center;
}
.slide {
	height: 335px;
	float: left;
	clear: none;
	position: relative;
	list-style-type: none;
}
.slider-arrows {
}
.slider-arrow {
	position: absolute;
	display: block;
	text-decoration: none;
}
.slider-arrow--right {
	right: 0px;
	height: 325px;
	width: 30px;
	top: 0px;
	color: #FFF;
	background-image: url(../img/top/header_rnav.png);
	background-repeat: no-repeat;
	margin-top: 10px;
	text-indent: 100%; 
    white-space: nowrap; 
    overflow: hidden;
}

.slider-arrow--left {
	background-image: url(../img/top/header_lnav.png);
	height: 325px;
	width: 30px;
	top: 0px;
	left: 0px;
	background-repeat: no-repeat;
	margin-top: 10px;
	color: #FFF;
	text-indent: 100%; 
    white-space: nowrap; 
    overflow: hidden;
}
.slider-nav {
	position: absolute;
	bottom: 25px;
}
.slider-nav__item {
	border-radius: 6px;
	width: 12px;
	height: 12px;
	float: left;
	clear: none;
	display: block;
	margin: 0 5px;
	background-color: #FCF;
}
.slider-nav__item:hover {
	background-color: #F9F;
}
.slider-nav__item--current {
	background-color: #F6F;
}
.slider_box {
	margin-top: 80px;
}
