@charset "utf-8";
/* CSS Document */

#slideshow {
 position: relative;
 width:  710px; /* ボックスの横幅 */
 height: 249px; /* ボックスの高さ */
 margin-left:auto;
 margin-right:auto;
 margin-bottom:15px;
}

#slideshow p {
 position: absolute;
 top:  0;
 left: 0;
 z-index: 8;
 opacity: 0.0;
 margin: 0;
 background-color: white; /* ボックスの背景色(必須) */
 height: 249px; /* ボックスの高さ */
}

#slideshow p.active {
 z-index: 10;
 opacity: 1.0;
}

#slideshow p.last-active {
 z-index: 9;}

#slideshow p img {
 width:  710px; /* 画像の横幅 */
 height: 249px; /* 画像の高さ */
 display: block;
 border: 0;
 /*margin-bottom: 10px; /* 画像下部の余白 */
}