/*
	jQuery Coda-Slider v2.0 - http://www.ndoherty.biz/coda-slider
	Copyright (c) 2009 Niall Doherty
	This plugin available for use in all personal or commercial projects under both MIT and GPL licenses.
*/

/* Insignificant stuff, for demo purposes */

	.panel h2.title { margin-bottom: 10px }
	noscript div { background: #ccc; border: 1px solid #900; margin: 20px 0; padding: 15px }

	/* スライドコンテンツの大きさと表示位置 */

	.coda-slider-wrapper {
	padding: 0;
	position:relative;
	width:470px;
	margin:0;
	height: 420px;
}
	.coda-slider {
}
	
	/* JavaScriptが使用不能なときでも、箱に含まれるスライダー内容を保つために、これを使ってください（yahoo翻訳にて） */
	.coda-slider-no-js .coda-slider { height: 250px; overflow: auto !important; padding-right: 20px }
	
	/* スライドコンテンツの横幅と高さ */
	.coda-slider, .coda-slider .panel {
	width: 470px;
	height:372px;
} 
	

	/* ローディングバーの表示位置 */
	.coda-slider p.loading { padding: 20px; text-align: center }


/* ナビゲーション（四角いボタン）のスタイル */
	.coda-nav ul {
	position: absolute;
	top: 382px;
	left: 222px;/*2コ*/
	/*left: 214px;*//*3コ*/
	/*left: 207px;*//*4コ*/
	/*left: 200px;*//*5コ*/
	/*left: 193px;*//*6コ*/
}
	.coda-nav ul { clear: both; display: block; margin: auto; overflow: hidden }
	.coda-nav ul li { font-size: 1px; display: inline; padding:2px; }
	.coda-nav ul li a {
	width:10px;
	height:0px;
	display: block;
	float: left;
	margin-right: 5px;
	padding-top: 10px;
	text-indent:-9999px;
	text-decoration: none;
	overflow: hidden;
	background-color: #DDDDDD;
}
	.coda-nav ul li a.current {
	background-color: #666666;
}
	
	/* ベース（触らない方が良い部分） */
.coda-slider-wrapper {
	clear: both;
	overflow: hidden;
	float: left;
	margin-top: 20px;
	margin-right: 20px;
	margin-left: 20px;
}
* html .coda-slider-wrapper {
	clear: both;
	overflow: hidden;
	float: left;
	margin-top: 20px;
	margin-right: 20px;
	margin-left: 10px;
}
	.coda-slider { float: left; overflow: hidden; position: relative }
	.coda-slider .panel { display: block; float: left }
	.coda-slider .panel-container { position: relative }
	.coda-nav-left, .coda-nav-right { float: left }
	.coda-nav-left a, .coda-nav-right a { display: block; text-align: center; text-decoration: none }
	
