/* CSS Document */
/* LAYOUT */

html, body {
/* establish page height and background color, position */
	height: 100%;
	background-color: #EEEEEE;
	margin: 0;
	padding: 0;
}

#pagewrapper {
/* put in the background vertical graphic */
/* allow height to flex more than 100 percent */
	width: 780px;
	min-height: 100%;
	height: auto; /* for FF/Moz/Safari */
	_height: 100%; /* for IE */
	/*background-image: url(../images/bkg.gif);
	background-repeat: repeat-y;*/
	margin: 0px auto;
	position: relative;
}

#pagecontent {
/* restrict content size */
	top: 0px;
	width: 760px;
	margin: 0px auto;
	background-color: #FFFFFF;
	
}

#content {
/* main content zone */
	min-height: 400px;
	/*height: 400px;*/
	margin: 10px;
	padding-bottom: 10px;
}

#utility {
/* company and contact information */
	width: 740px;
	margin: 10px;
	border-top: 1px solid #CCCCCC;
	padding-top:10px;
	font-style:italic;
}

#spacer {
	width: 760px;
	margin: 0px auto; 
	height: 2px; 
	background-color: #FFFFFF;
}

#masthead {
	width: 740px;
	margin: 20px 0 0 0;
	padding-top: 10px;
	padding-left: 10px;
	/*height: 185px;*/
}

#mainnav {
/* main navigation */
	width: 740px;
	height: 21px;  
	background-color: #003366;
}

#footer {
	float: right;
	margin: 10px 0;
}
 