/* CSS 
 ***********************************************/

/**
 VERTICAL CENTERING
 Credits to Matthew Tretter
 http://exanimo.com/css/vertical-centering-with-a-floated-shim/
**/

/* Globals */
html, body {
	height: 100%;
	margin: 0; padding: 0; 
}

#spacer {
	visibility: hidden;
	width: 100%;
	height: 50%;
	margin-top: -340px;
	float: left; 
}

#container {
	width: 960px;
	height: 680px;
	margin: auto;
	clear: both;
	position: relative;
	top: -340px;
	/* IE4ever Hack: Hide from IE4 **/
	position: static;
	/** end hack */ 
}

#noflash {
	padding: 20px;
	background-color: #eee; 
}

/* Hide from IE5mac \*//*/
#spacer { display: none; }
html, body { height: auto; }
/* end hack */
