@charset "UTF-8";
body {
	background-color: rgb( 100, 110, 100);
	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: #FFF;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14pt;
	font-weight: bold;
	a:link { color: rgb(235, 207, 32)};
a:visited { color: rgb(235, 207, 32)};
a:hover { color: rgb(235, 207, 32); text-decoration: none};
a:active { color: rgb(235, 207, 32)};

}

.oneColFixCtr #container {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-color: rgb( 100, 110, 100);
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	color: #FFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
}

.oneColFixCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 9pt;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: #FFF;
	
	
	
}

h1{
	font-size: 24pt;
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
	color: rgb(235, 207, 32);
};

h2{ font: Georgia, "Times New Roman", Times, serif;
          color: rgb(235, 207, 32)
		  }
h5{ font:Arial, Helvetica, sans-serif;
	color: rgb(235, 207, 32);
}
a:link { color: rgb(235, 207, 32)};
a:visited { color: rgb(235, 207, 32)};
a:hover { color: rgb(235, 207, 32); text-decoration: none};
a:active { color: rgb(235, 207, 32)};

