@charset "UTF-8";
/* CSS Document */

body  {
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	background-color: #E8E8E8;
}
.grid {
	display: table;
	border-spacing: 0px;
	width: 900px;
	margin-left: 10%;
	padding-right: 10%;
} 
.row {
	display: table-row;
} 
.container {
	display: table-cell;
	background-color: #FFFFFF;
	vertical-align: top;
	text-align: left;
	padding-right: 50px;
	padding-left: 50px;
	font-size: 12px;
}