@charset "utf-8";

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #CCCCCC;
	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;
}
.body1 #container1 {
	width: 800px; 
	background: #CCCCCC;
	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. */
}
.body1 #mainContent {
	padding: 10px 20px;
	height:auto;
}


/* header & text formatting attributes */

h1 {
color:#666666; 
font-size:18px;
font-weight:400;
font-family:Verdana, Arial, Helvetica, sans-serif;
}




/* copyright page */
.copyright, .contact {
    
	width:700px;
	height:auto;
    padding:15px;
    border:0px;
    margin:10px;
	
	background-color:transparent;
	color:#666666;
	font-size:12px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

/* .copyright link formatting */
.copyright a:link, a:visited, a:active { text-decoration:none; color:#666666; }
.copyright a:hover { text-decoration:none; color:#ffffff; background-color:#cc6600; }

/* .contact link formatting */
.contact a:link, a:visited, a:active { text-decoration:none; color:#666666; }
.contact a:hover { text-decoration:none; color:#ffffff;  }




