﻿@charset "UTF-8";
#slides { position: relative;}
#slides .slides-container { display: none;}
#slides .scrollable {
	*zoom: 1;
	position: relative;
	top: 0;
	left: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	height: 100%;
}
#slides .scrollable:after {
	content: "";
	display: table;
	clear: both;
}
.slides-navigation {
	margin: 0 auto;
	position: absolute;
	z-index: 3;
	top: 50%;
	margin-top: -25px;
	width: 100%;
	text-indent: -9999px;
}
	.slides-navigation a {
		position: absolute;
		display: block;
		width: 50px;
		height: 50px;
	}
		.slides-navigation a.prev {
			left: 20px;
			background: url(../img/top/ico_prev_hero_01.png) 0 0 no-repeat;
		}
		.slides-navigation a.next {
			right: 20px;
			background: url(../img/top/ico_next_hero_01.png) 0 0 no-repeat;
		}

.slides-pagination {
	position: absolute;
	z-index: 3;
	bottom: 26px;
	width: 100%;
	text-align: center;
}
	.slides-pagination a {
		width: 10px;
		height: 10px;
		border-radius: 10px;
		display: -moz-inline-stack;
		display: inline-block;
		vertical-align: middle;
		margin: 0 10px;
		overflow: hidden;
		text-indent: -9999px;
		background: rgba(255,255,255,0.40);
		opacity: 0.4;
		-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
	}
		.slides-pagination a.current {
			background: #fff;
			opacity:1;
			-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
		}

@media screen and (max-width: 767px) {
.slides-navigation {
	top: inherit;
	bottom: 60px;
	margin-top: 0;
}
	.slides-navigation a {
		width: 25px;
		height: 25px;
	}
		.slides-navigation a.prev { 
			left: 0;
			background-size: 25px 25px;
		}
		.slides-navigation a.next { 
			right: 0;
			background-size: 25px 25px;
		}

.slides-pagination { bottom: 4px;}
	.slides-pagination a {
		width: 5px;
		height: 5px;
		border-radius: 5px;
		margin: 0 5px;
	}
}
