/*
	slideshow from [ http://jonraasch.com/blog/a-simple-jquery-slideshow ]
*/
#slideshow {
	float: left;
	position: relative;
	height: 241px;
	width: 283px;
}

#slideshow img {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 8;
	/* below is added per design spec, not required to work */
	background: #fff;
	border: 1px solid #dfb026;
	padding: 8px;
}

#slideshow img.active {
	z-index: 10;
}

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