/* 
	Resets defualt browser settings
	reset.css
*/
html,body,div,span,applet,object,iframe,h1,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td { 
margin:0; padding:0; border:0; outline:0; font-weight:inherit; font-style:inherit; font-size:100%; font-family:inherit; vertical-align:baseline; }

:focus { outline:0; }

h2{display:inline;} /* 改行させない為 */

a:active { outline:none; }

body { line-height:1; color:black; background:white; }

ol,ul { list-style:none; }

table { border-collapse:separate; border-spacing:0; }

caption,th,td { text-align:left; font-weight:normal; }



/*
	Page style
*/
body { 
	color:#434343;
	padding:20px 40px;
	position:relative;
	text-align:center;
	background-color:black;
}

h2 {
	color:white;
}


#container {
	width:673px;	/* 画像の横幅  */
	padding:10px;
	margin:0 auto;
	position:relative;
	z-index:0;
	
}

#example {
	width:673px;	/* 画像の横幅 */
	height:476px;	/* 画像の縦幅+30 */
	position:relative;
	background-color:white;
}



/*
	Slideshow
*/

#slides {
	position:absolute;
	top:0px; /* タイトルの下余白調整 */
	left:0px;
	z-index:100;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:673px;	/* 画像の横幅 */
	overflow:hidden;
	position:relative;
	display:none;
}


.slides_container div.slide {
	width:673px;	/* 画像の横幅 */
	height:476px;	/* 画像の縦幅+30 (captionのheight:30pxの事？)*/
	display:block;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:170px;
	left:0px;
	width:70px; /* htmlファイルにも設定 */
	height:126px; /* htmlファイルにも設定 */
	display:block;
	z-index:101;
}

#slides .next {
	left:680px; /* 右矢印ボタンの位置 */
}

#slides .prev {
	left:-80px; /* 左矢印ボタンの位置 */
}



/*
	Pagination
*/

.pagination {
	margin:10px 0;
	width:670px; /* ページ位置の○画像領域
border:solid 1px red;
height:30px;  */
}

.pagination li {
	float:left;
	margin:0 8px;
	list-style:none;
}

.pagination li a {
	list-style:none;
	display:block;
	width:12px;
	height:12px;
	padding-top:1px;
	background-image:url(../slid_parts/pagination.png);
	background-position:0px -12px ; /* 左上から右に0px, 下に-12px,つまりpagination画像を下へ12px移動 */
	/* background-position-yは, ieが独自にwebkitに取り込んだものなので、効かない。よって、横並びの記述の仕方となる。
		また、pxの単位を省略しても動作しないので注意！ */
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -25px;
}


/*
	Caption
*/

/* 現在不使用 */
.caption {
	position:absolute;
	bottom:-30px;
	left:0;
	height:30px;
	padding:0px 5px 0 5px;
	background:#000; 
	width:512px;	/* 画像の横幅 */
	font-size:1.3em;
	line-height:1.33;
	color:#fff;
	border-top:1px solid #000;
	top:318;
	filter: alpha(opacity=50); /* IE対策 */
	-moz-opacity:0.20;  /* FireFox対策 */
	opacity:0.50;  /* Opera, Safari対策 */
}

/*
	Anchors
*/

a:link,a:visited {
	color:#599100;
	text-decoration:none;
}

a:hover,a:active {
	color:#599100;
	text-decoration:underline;
}