@charset "UTF-8";
/* CSS Document */

* {
    margin: 0;
}
html, body {
    height: 100%;
}



body {
	
	background-image: url(img/bg.jpg);
	background-repeat: repeat-y;
	background-position: top center;
	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;
	background-color: #ffffff;
}
p {
	
	color:#333333;
	font: normal normal 12px/1.4em verdana, Tahoma, sans-serif;
	text-align: justify;
}
.oneColFixCtr #container {
	width: 815px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image: url(img/bg2.jpg);
		background-repeat: no-repeat;
	background-position: top center;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtr #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

h1{
	
	color:#ff6600;
	font: normal normal 1.8em verdana, Tahoma, sans-serif;

}
h2{
	
	color:#666666;
	font: normal normal 1.4em verdana, Tahoma, sans-serif;

}
h3{
	
	color:#666666;
	font: normal normal 1.2em verdana, Tahoma, sans-serif;

}
.footer {font-size: 9px; color:#666666;}