@charset "UTF-8";
/* CSS Document */
#slideshow {
	position: relative;
	height: 318px;
	background-image:url(../images/build-future.jpg);/*This image is used as the first image and will not reappear in slideshow*/
}
#slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8;
    opacity: 0.0;
	display:none;
}
#slideshow img.active {
    z-index: 10;
    opacity: 1.0;
	display: block;
}
#slideshow img.last-active {
    z-index: 9;
}

