/* CSS Document */

html,body {
	margin: 0;
	padding: 0;
	text-align: center;
	background-image: url(...);
	background-repeat: repeat;
	background-color: #333333;
}

#container {
	position: relative;
	width: 1000px;   /* background-image width */
	height: 700px;
	background-position: center top;
	background-repeat: no-repeat;
	text-align: center;
	background-image: none;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}	
