/**
 * structure.css
 
 * Change the values to alter the overall layout/structure of the Web site.
 * If you change the container width, you must also change other width values so the sum equals the conatiner value
 * Example - if this Web site is a three column layout, consisting of (going across - #navigation, #main-content, #utility), then the sum of these three columns must equal the width of the container
 */
body { 
	background-color: #EAEAEA;
}
#container {
	margin: 0px auto 0px auto;
	padding: 0px 10px 0px 10px;
	text-align: left;
	width: 974px; /* use maximum of 768px for 800x600 displays, use a maximum of 992px for 1024x768 displays */
	background-color: #FFFFFF;
}
#wrapper {
}

/* header */
#header {
	float: left;
	width: 974px;
	height: 193px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

/* navigation */
#navigation {
	display: none;
}

/* main-content */
#main-content {
	width: 946px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

/* utility */
#utility {
	display: none;
}

/* footer */
#footer {
	clear: both;
	width: 974px;
	background-color: #FFFFFF;
}