/* 
IE5win uses a default size that is one size bigger than everyone else, so we
set to one size smaller than the main style sheet for consistency.

We also set text-align to center to force child div's to be centered
Other browsers get content centered by setting left and right margins to auto
*/
body {
  font-size: smaller;
  text-align: center;
  }

/*
Other browsers get content centered by setting left and right margins to auto
*/
div#header {
	text-align: center;
}

/*
Reset text-align (inherited value from body = center)
*/
div#content {
	text-align: left;
}


/* total width 450 */
#whowhy {
	width: 450px;
}

/* total width 300 */
#testimonials {
	width: 300px;
}

/* total width 375 */
#subcontent1, #subcontent2 {
	width: 375px;
}