@charset "utf-8";
/* CSS Document */
*{
	margin:0;
	padding:0;
}
img{
	border:none;
}

/*** set the width and height to match your images **/
#slideshow {
    position:relative;
    width: 100%;
    height:auto;
}

#slideshow div {
    position:absolute;
    top:0;
    left:0;
    z-index:8;
    opacity:0.0;
    width: 100%;
    height:auto;
    background-color: #FFF;
}

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

#slideshow div.last-active {
    z-index:9;
}
#slideshow div a{
	text-align: center;
	display: block;
	margin-bottom: 10px;
}

#slideshow div img {
	max-width: 100%;
}