@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
#container {
	width: 780px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}
#header {
	background-color: #000000;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-image: url(images/TFP_wings_dirty_350x169.png);
	background-repeat: no-repeat;
	background-position: center center;
	height: 200px;
	width: 780px;
}
#header   h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: "Courier New", Courier, monospace;
	font-size: 16px;
	color: #FFFFFF;
	padding-top: 165px;
	padding-right: 10;
	padding-bottom: 10px;
	padding-left: 10px;
}
#mainContent {
	font-size: 12px;
	background-color: #FFFFFF;
	background-repeat: repeat-y;
	background-position: center center;
	padding-top: 10;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	height: 400px;
	margin-top: 10px;
}
#footer {
	padding: 0 10px;
	background-color: #000000;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	color: #FFFFFF;
	text-align: center;
	font-family: "Courier New", Courier, monospace;
	font-size: 14px;
}
.h3 {
	font-size: 12px;
	font-weight: bold;
	color: #000000;
}
h1 {
	font-size: 16px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #000000;
}
.h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: italic;
	font-weight: bold;
	color: #000000;
}
