/* nn4_3col_header.css file */
/* originally downloaded from the internet, then modified for our needs */
/* this css is arranged in this specific order to deal with Netscape Navigator 4 bugs */
/* do not modify content, rather create new sections at the bottom */

/* css-p positioning stuff */
/* # starts the sction dealing with tag IDs */

/* top of the page */
#header {
	border: 0px none #777777;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	height: 90px;
}

/* left column */
#leftcol {
	position: absolute;
 	left: 0;
	width: 179px;
	border: 0px none #777777;
	margin: 0 0 0 0;
	padding: 0 20px 0 0;
  background-color: transparent;
}

/* not generally using this much, may require revision */
#rightcol {
	position: absolute;
	left: 760px;
	top: 80px;
	width: 179px;
	border: 0px none #777777;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
  background-color: transparent;
	z-index: 3;
}


/* main content area  */
#content {
	border: 0px none #777777;
	/*      top   rt    bot  left  */
	margin: 0     0     0    200px;
	padding: 0 0 0 0;
  background-color: white;
	color: #ffffff;
	width: 600px;
}
	
#footer {
	font-size: x-small;
	margin: 0     0     0    179px;
	text-align: center;
	width: 600px;
}


