﻿#slideshow2 {
	position: relative;
	width:  210px; /* ボックスの横幅 */
	height: 200px; /* ボックスの高さ */
/*	margin:5px auto;  */
	margin:1px 32px 5px 1px;
	border-bottom-color:navy;
	float:left
}
#slideshow2 img {
   position: absolute;
   top: 0;
   left:0;
   z-index: 8;
   opacity: 0.0;
}
#slideshow2 img.active {
   z-index: 10;
   opacity: 1.0;
}
#slideshow2 img.last-active {
   z-index: 9;
}

/*                       */
#slideshow2 p {
   position: absolute;
   top:  0;
   left: 0;
   z-index: 8;
   opacity: 0.0;
   margin: 0;
   background-color: white; /* ボックスの背景色(必須) */
   height: 550px; /* ボックスの高さ */
}

#slideshow2 p.active {
   z-index: 10;
   opacity: 1.0;
}

#slideshow2 p.last-active {
   z-index: 9;
}

#slideshow2 p img {
   width:  210px; /* 画像の横幅 */
   height: 200px; /* 画像の高さ */
   display: block;
   border: 0;
   margin-bottom: 3px; /* 画像下部の余白 */
}

