/*
	anythingSlider v1.0
	By Chris Coyier: http://css-tricks.com
	with major improvements by Doug Neiner: http://pixelgraphics.us/
	based on work by Remy Sharp: http://jqueryfordesigners.com/
*/
#slide {
	width:662px; 
	height:187px; 
	margin:0 auto;
	text-align:left;
}
.anythingSlider {
	float:left;
	width:662px; /* 画像の幅 */
	height:186px; /* 画像の高さ */
	position:relative;
	margin:0 auto;
	text-align:center;
	display:block;
	background:#e9e9e9;
}
.anythingSlider .wrapper {
	width:662px; /* 画像の幅 */
	height:186px; /* 画像の高さ */
	overflow:hidden;
	margin:0; padding:0;
	position:absolute;
	top:0px; left:0px;
}
.anythingSlider .wrapper ul {
	width:99999px;
	list-style:none;
	 position:absolute;
	 top:0; left:0;
	 background:#e9e9e9;
	 margin:0;  padding:0;
}
.anythingSlider ul li {
	display:block;
	float:left;
	list-style:none;
	text-align:left;
	width:662px; height:186px; /* 画像サイズ */
	margin:0; padding:0;
}

.anythingSlider ul li img {
	width:441px; height:186px; /* 画像サイズ */
	float:left;
}

.anythingSlider ul li div {
	width:220px; height:186px; /* 画像サイズ */
	float:right;
}

.anythingSlider .arrow {
	display:none;
}
.anythingSlider .forward { display:none; }
.anythingSlider .back { display:none; }
#start-stop { display:none; }







