@charset "utf-8";

/* 初期設定
--------------------------------------------------------- */
* {
	margin: 0;
	padding: 0;
}

body { padding: 0px; }


/* slider
--------------------------------------------------------- */
.slideFrame {
	position: relative;
	margin: 0 0px;
	overflow  hidden;
	overflow-x: auto;
	width: 950px;
	height: 65px;
}


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

.slideCell {
	display: block;
	float: left;
	margin-right: 5px;
	width: auto;
	height: 100%;
	background: #fff;
	color: #333;
}

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

.slideCell img{
	background:#fff;
	border-color:#fff;
 	border-style:solid;
	border-width:8px;
	color:inherit;
	vertical-align:top;padding:0px;
	width:auto;
	height:50px;
}

.slideCell a:hover img{
	background:#fff;
	border-color:#0099aa #0099cc #0099dd #0099bb;
	border-style:solid;
	border-width:3px;
	color:inherit;
	vertical-align:top;padding:0px;
	width:auto;
	height:55px;
}

/* controller */
.slideCtrl {
	display: none;
	position: absolute;
	top: 0;
	width: 30px;
	height: 100%;
	background: #fff url();
	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();
	padding-top: 20px;
}

.slideCtrl.left { left: 0px; background: #fff;}
.slideCtrl.right { right: 0px; background: #fff;}





