@charset "ISO-8859-1";
body {
	background: #4C4C4C;
	height: 100%;
	font: 13px Helvetica, Arial, Verdana, sans-serif;
	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: #CCCCCC;
}
.oneColFixCtrHdr #container {
	height: 600px;
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	left: 50%;
	top: 50%; /* centers the centre of this div vertically */
	margin: -340px 0 0 -400px; /* the negative margins (in conjunction with width/height + left/top margins) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: absolute;
	min-height: 600px;
}
.oneColFixCtrHdr #header {
	padding: 10px 25px 0 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. */
	height: 160px;
	margin-top: 50px;
}
.oneColFixCtrHdr #mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	height: 360px;
	line-height:16px;
	min-height: 360px;
}
.oneColFixCtrHdr #mainContent .headline {
	font-size: 15px;
	line-height: 20px;
	color: #FFF;
}
.oneColFixCtrHdr #footer {
	font-size: 9px;
	padding:10px 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
}
a:link {
	color: #CCC;
	text-decoration:none;
}
a:visited {
	color: #CCC;
	text-decoration:none;
}
a:hover {
	color: #9FC;
	text-decoration: none;
}
