html, body {
	height: 100%;         /* required */
}
body {
	text-align: center;   /* horizontal centering hack for IE */
	padding: 0;           /* required to "hide" distance div */
	margin: 0;            /* required to "hide" distance div */
}

:focus {
	outline: 0;
}

div#distance { 
	margin-bottom: -80px; /* half of content height */
	background: white;      /* temporary - used to see div */
	width: 1px;           /* required to "hide" distance div */
	height: 50%;          /* required */
	float: left;          /* required */

}
div#content {
	position: relative;   /* positions content on top of distance */
	text-align: left;     /* horizontal centering hack for IE */
	height: 160px;         /* required - desired height */
	width: 724px;          /* required - desired width */
	background: white;     /* cosmetic */
	margin: 0 auto;       /* required */
	clear: left;          /* required */
}
div#slideshow {
	position:relative;
	height:160px;
	width:724px;
}
div#slideshow DIV {
	position:absolute;
	z-index:8;
	opacity:0.0;
	height: 160px;
	background-color: #CCC;
}
div#slideshow DIV.active {
    z-index:10;
    opacity:1.0;
}
div#slideshow DIV.last-active {
    z-index:9;
}
div#slideshow DIV IMG {
    height:160px;
    display:block;
    border:0px;
}

