/*****************************************
                slider.css
*****************************************/

@charset "utf-8";

/* slider
--------------------------------------------------------- */
.slideFrame {
	position: relative;
	left: -30px;
	overflow: hidden;
	overflow-x: auto;
	width: 410px;
	height: 45px;
	background: #333;
	border: 5px solid #333;
}

.slideGuide {
	width: 100%;
	height: 100%;
}

.slideCell {
	display: block;
	float: left;
	margin-right: 5px;
	width: 60px;
	height: 45px;
	background: #FFF;
	color: #333;
}

/* sample */
.slideCell a {
	display: block;
	width: 100%;
	height: 100%;
	background: skyblue;
}
.slideCell a:hover {
	background: yellow;
}

/* controller */
.slideCtrl {
	display: none;
	position: absolute;
	top: 0;
	width: 30px;
	height: 100%;
	background: #676767 url(https://arthur-hollands.com/web/images/top/hatch.png);
	color: #fff;
	font-size: 12px;
	text-align: center;
	cursor: default;
	opacity: 0.8;
	-moz-opacity: 0.8;
	-webkit-opacity: 0.8;
	filter: alpha(opacity=80);

	/* 確認用 */	
	background: #676767 url(https://arthur-hollands.com/css/hatch.png);
	padding-top: 40px;
}

.slideCtrl.left { left: -5px; }
.slideCtrl.right { right: -5px; }