body {
	background-color: #171717;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	color: #FFFFFF;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;
}
a:link {
	color: #FFFFFF;
}
a:visited {
	color: #CCCCCC;
}
a:hover {
	color: #CCCCCC;
}
a:active {
	color: #FFFFFF;
}
/*Absolute Middle
Use absolute positioning (top:50%;left:50%).
Then give the container negative margins equal to half the size of the container width and height*/

#middle {
	width:300px;
	height:100px;
	position:absolute;
	top:50%;
	left:50%;
	margin-top: -50px;
	margin-right: -150px;
	margin-bottom: -50px;
	margin-left: -150px;
	text-align: center;
	overflow: visible;
}

#slideshow {
	width:900px;
	height:600px;
	position:absolute;
	top:50%;
	left:50%;
	margin-top: -300px;
	margin-right: -450px;
	margin-bottom: -300px;
	margin-left: -450px;
	text-align: center;
	overflow:hidden;
}

#footer {
	width:900px;
	height:30px;
	position:absolute;
	top:50%;
	left:50%;
	margin-top: -325px;
	margin-right: -450px;
	margin-bottom: -325px;
	margin-left: -450px;
	vertical-align:baseline;
	text-align:right;
	overflow:hidden;
}
