/*
As you can see, this is just a bare bones structural layout with no real styling applied,
no browser hacks either so you'd notice small differences between IE5+ and Mozilla browsers.
Pay that no attention.
I think that there's enough markup hooks in the (x)html example to do about whatever you'd
like design-wise from this single stylesheet
 */
body {
	text-align : center;
	margin : 0 auto;
	background-color : #fff;
	}
#wrapper {
	text-align : left;
	width : 770px;
	margin-left : auto;
	margin-right : auto;
	}
#header {
	padding : 0;
	margin-bottom : 0;
	background-color : #ccc;
	}
#main {
	padding : 0;
	margin-right : 200px;
	background-color : #efefef;
	}
#rightcol {
	float : right;
	width : 200px;
	margin : 0;
	margin-right : 0;
	padding : 0;
	background-color : #ddd;
	}
#footer {
	clear : both;
	padding : 0;
	margin-top : 0;	
	background-color : #ccc;
	}

