/* CSS Document */

/* set page background to black and text to very dark gray
 * html is included because this is the root element for
 * pages served as application/xhtml+xml */
 html, body {
 	background: #000000;
	color: #999999;
	margin: 0;
	padding: 0;
	font: Arial;
	color: #333333;
	}
/* set width of wrapper to same width as title image
 * top and bottom margin borders
 * auto on both sides will center wrapper in modern browsers */
#top_border {
	width: 800px;
	height: 15px;
	margin: 0 auto;
	}
#wrapper {
	width: 800px;
	height: 600px;
	margin: 0 auto;
	background-color: #000000;
	}
	#title_bar {
	width: 800px;
	height: 160px;
	margin: 0 auto;
	background-image: url(../assets/HTML_elements/title_bar.jpg);
	}
	#nav_bar {
	width: 800px;
	height: 25px;
	margin: 0 auto;
	background-image: url(../assets/HTML_elements/nav_bar_base.jpg);
	}
	#main_gfx {
	width: 800px;
	height: 415px;
	margin: 0 auto;
	background-image: url(../assets/HTML_elements/main_gfx_main.jpg);
	}
#footer {
	width: 800px;
	height: 25px;
	margin: 0 auto;
	}


