/*** set the width and height to match your images **/

#slideshow {
    position:relative;
		width: 200px;
    height:200px;
		margin-right: 20px;
		margin-left: 175px;
		background-color: #d7cbb0;
		background-image:url('/images/paper1-bkgrnd.gif');
		overflow: hidden;
}

#slideshow div {
    position:absolute;
    top:0;
    left:0;
		width: 100%;
		height: 100%;
    z-index:100;
    opacity:0.0;
		text-align: center;
		filter: alpha(opacity=0);
		background-color: #d7cbb0;
		background-image:url('/images/paper1-bkgrnd.gif');
}

#slideshow div.active {
    z-index:102;
    opacity:1.0;
		filter: alpha(opacity=1--);
}

#slideshow div.last-active {
    z-index:101;
}

