﻿/*** set the width and height to match your images **/

#slideshow {
position: relative;
width: 375px !important; /*set your width*/
height: 525px !important; /*set your height*/
background-color: transparent; /*i needed a black background*/
}
#slideshow div {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 100;
opacity: 0.0;
filter: alpha(opacity=0);
text-align: left;
}
#slideshow div.active {
z-index: 102;
opacity: 1.0;
filter: alpha(opacity=100);
}
#slideshow div.last-active {
z-index: 101;
}