@charset "UTF-8";
body {
	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: #BADA80;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #686868;
	margin-top: 20;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
#container {
	width: 900px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #181C15;
}
#header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#mainContent {
	padding: 0 20px;
}
#footer {
	padding: 0;
	background-color: #686868;
}
h1, h2, h3{
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-size: 18px;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 5px;
	padding-left: 0;
}
p  {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 14px;
	padding-top: 5px;
	padding-right: 0;
	padding-bottom: 8px;
	padding-left: 0;
}
a:link {
	color: #B7B9A4;
}
a:visited {
	color: #B7B9A4;
}
.fltrt {
	float: right;
	padding-left: 5px;
	padding-top: 10px;
}
#copyright p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #999999;
}
#copyright  a:link {
	color: #999999;
	text-decoration: none;
}
#copyright a:visited {
	color: #CCCCCC;
	text-decoration: none;
}
.bold {
	font-weight: bold;
}
.ital {
	font-style: italic;
}
