/* Two Column Floated
Method: Floats
Browsers: 
Resource: css mastery, by Andy Budd
*/

/* == Centering */
body {
	text-align: center; /*for IE*/
}
#wrapper {
	width: 800px;
	margin: 0 auto;
	text-align: left; /*to overide IE rule*/
	background-color: #f6f6f6;
}

/* == Layout */
#content {
	width: 46em;
	float: left;
}
#mainNav {
	width: 15em;
	float: right;
}
#mainContent {
	width: 42em;
	/*max-width: 66%;*/
	float: left;
	padding-left: 4em;
}
#footer {
	clear: both;
}

/*#secondaryContent * {
	padding-left: 1em;
	padding-right: 1em;
}*/