body {
	background: #999966;
  	margin: 0px;/* 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 */
	
}
#container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
}
#header {
  	background: #999966;
  	width: ;
  	height: ;
  	padding: 0 0 0 20px; 
	border-bottom: 1px solid #FFFFFF; 
	font:20px "Century Gothic";
	color: #333300;
	letter-spacing:.4em;
	font-weight:bold;
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#leftcol {
  float: left;
  width: 250px;
  height: 510px;
  background: #a4c2c2; /* the background color will be displayed for the length of the content in the column, but no further */
	border-top: 1px solid #FFFFFF;
	padding: 0;
	font:12px "Century Gothic";
	color: #333300;
	line-height:18px;
	margin: 0;
}
#content {
  background: #fff;
  float: left;
  width: 500px;
  height: 480px;
  padding: 15px
}

#content2 {
  background: #fff;
  float: left;
  width: 750px;
  height: 100%;
  padding: 15px
}

.pageName {
	font:20px "Century Gothic";
	color: #CC3300;
	letter-spacing:0.1em;
	line-height:100%;







	padding: ;
	
}
.bodyText {
	font:12px verdana;
	line-height:24px;
	color:#333333;
	padding: ;
	}
	
#footer {
padding: 0 0 0 0;
  clear: left;
  width: 780px;
  background:#999966; 
	border-top: 1px solid #FFFFFF;
	text-align: center;
	font:10px arial;
	color: #333300;
	letter-spacing:.1em;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 15px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.navText {
	font:10px arial;
	color: #333300;
	letter-spacing:.1em;
	padding: 15px 15px 15px 15px;
	background-color: #a4c2c2;
	text-align: center
	}
		
#navigation a {
	font:10px arial;
	color: #336666;
	text-decoration:none;
	letter-spacing:.1em;
	}
	
#navigation a:hover {
	color: #333300;
	text-decoration:underline;
	}

a {
	color: #CC3300;
	text-decoration:none;
	font-weight:bold;
	}
	
a:hover {
	color: #999966;
	text-decoration:underline;
	}
