/* CSS Document */

/* START CONTENT HOLDER/FOOTER PLACEMENT */
html, body, .contentHolder {
	min-height: 100%;
	width: 100%;
	height: 100%;
}
/*
 * The "height" above is a hack for IE5+/Win.  Below we adjust
 * it using the child selector to hide from IE5+/Win
 */
html>body, html>body .contentHolder {
	height: auto;
}
/*
 * Without this, Moz1.0 adds a vertical scrollbar
 */
body {
	margin: 0;
}
.contentHolder {
	position: absolute;
	top: 0;
	left: 0;
}
.flashFloor {
	position:absolute;
	left:0px;
	top:100%;
	width:100%;
	height:150px;
	z-index:2;
	margin-top: -150px;
	/*border: medium dotted #FF0000;*/
}
/* Along with the width: 100% above, adds a fix for IE5's box model.
 * From a suggestions by Szymon Boniecki -- http://dmr.art.pl 
 */
html>body .flashFloor {
	width: 100%;
}
.content {
	position:relative;
	margin-bottom: 15em;
	height: auto;
	padding: .5em;
	width: 800px;
	left:50%;
	margin-left: -400px;
}
/* END CONTENT HOLDER/FOOTER PLACEMENT */