
body {
height: 100%;
	font: 11px tahoma, sans-serif;
	background: #6c4d88;
	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;
}
a {color:#666666;}
a:hover { color:#999999;}
h1 {
font-family:Georgia, "Times New Roman", Times, serif;
font-size:16px}

#container {
	width: 100%;  /* this will create a container 80% of the browser width */
	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. */
}
#header {
	margin: 0 auto;
	background-color: #6c4d88;
	background-image: url(images/topBG.jpg);
	background-repeat: repeat-x;
	height: 160px;
	padding-top: 0;
	background-position: left top;
}
#headerText{
margin: 0 auto;
width: 800px;
height: 160px;
}
#mainContent {
	width: 700px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-top: 40px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
}
#footer {

height: 700px;
	background-color: #6c4d88;
	background-image: url(images/footerBG.jpg);
	background-repeat: repeat-x;

} 
#footerText {
color: #ffffff;
	margin: 0 auto;
	height: 700px;
width: 800px;
}
#footerText a{
color: #ffffff;
text-decoration:underline;
}
#footerText a:hover{
text-decoration:none;
}

