/* CSS Document */

body {
	background-color: #000000;
	padding:0;
	margin:0;
	color:#FFFFFF;
	font-family:Arial;
	font-size:12px;
	line-height:15px;
	
	text-align:center; /* for IE */
}

div {
	margin:0; 
	padding:0;
}/**/

/* Vertical and horizontal centering*/
/* vertical centering too difficult across browsers - used Javascript image resize */

#outer{
	/*background-color: #FFFFFF;*/
	
	/* horizontal centering */
	/*display:table; DON"T DO THIS AS IT STOPS oLink.x in Jvascript in Safari */
	width:950px;
	margin:0 auto; /*for good browsers*/
	text-align:left; /* to counter act body center */
}
#middle{
	width:950px;
	/* vertical centering too difficult across browsers - used Javascript image resize */
}
#inner{
	width:950px;
}


