﻿/*
	We use Inners and Outers because some browsers (e.g. IE8) think the width does not include
	any border width whereas other browsers (e.g. FireFox 3.6.3) think the width includes any
	border width. Thus we define a width on an Outer and a border on an Inner.

	We use LeftSpacers when floating to avoid any issues with margins with different browsers.
*/

#siteOuter {
	width: 1112px;
	background-color: white;
	margin: 0 auto 0 auto;
}
#siteInner {
	border: 0px solid red;
}
