/*
IE will not center a div unless you use the hack of centering the body text, 
then set a min height to avoid problems with Mozilla
*/

body {
	text-align: center;
	min-width: 600px;
}
#wrapper {
	margin: 0px auto;
	width: 600px;
}

