/*--------------------------
PICTURE SLIDESHOW
CSS
--------------------------*/

#slideshow {
   position: relative;
   width:  200px; /* BOX WIDTH */
   height: 200px; /* BOX HEIGHT */
}

#slideshow p {
   position: absolute;
   top:  0;
   left: 0;
   z-index: 8;
   opacity: 0.0;
   margin: 0;
   background-color: #FFDECE; /* BOX BG-COLOR(BACK GROUND COLOR9 */
   height: 260px; /* BOX HEIGHT */
}

#slideshow p.active {
   z-index: 10;
   opacity: 1.0;
}

#slideshow p.last-active {
   z-index: 9;
}

#slideshow p img {
   width:  200px; /* PICTURE WIDTH */
   height: 200px; /* PICTURE HEIGHT */
   display: block;
   border: 0;
   margin-bottom: 8px; /* PICTURE UNDER EMPTY */
}

