@charset "UTF-8";
/* CSS Document */


/*  
In firefox if you reduce the size of the browser window, half of your centred 
div hangs off the left of the page.
Using min-width makes sure div is centered when firefox window is resized
*/
body {
	background-color: #000000;
	text-align: center;
	min-width: 803px;
}
/* 
wrapper refers to the div that you want to center.
set its width and then use margin auto on the right and left hand sides
Set margin-top: 12%: this makes it look centered vertically (u can change accordingly)
You can set text-align:left so the text is not centered in the main div
*/
#wrapper {
	margin:0 auto;
	margin-top:12%;
	width:803px;
	text-align: center;
}
-->

