@charset "UTF-8";
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 20px;
	color: #ffffff;
	background: #ffffff;
	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 */
}

h1 {
	font-size: 16px;
}

a:link {
	color: #ffffff;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #ffffff;
}
a:hover {
	text-decoration: underline;
	color: #ffffff;
}
a:active {
	text-decoration: none;
}


.standard #container {
	width: 780px;  
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.standard #mainContent {
	padding: 0 20px 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	
}

#header {
	/* background-image: url(images/logo2.gif); */
	background-repeat: no-repeat;
	background-position: left;
	margin-top: 50px;
}
#pageContent {
	padding: 35px 0 20px 20px;
	background-color: #fbb04b;
	margin: 30px 20px 0 20px;
}
#text {
	width: 280px;
	margin-left: 40px;
	margin-right: 20px;
	float: left;
}
#contact {
	width: 280px;
	padding-left: 35px;
	float: right;
	border-left: 1px solid #e3e3e3;
}
#footer {
	font-size: 10px;
	color: #999999;
	margin: 0 40px 0 40px;
}
#copyright {
	float: left;
	text-align: left;
}
#footerText {
	float: right;
	text-align: right;
}



.clear { 
	clear: both;
}
