
html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background-color: #330000;
	font-size: .9em; 
	font-family: arial, helvetica, sans-serif;
	color: #330000;
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:930px;
	background: #eeeeee;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */

}

div#header {
	background-image: url(images/nutpubbanner-1.jpg);
	background-repeat: no-repeat;
	height: 100px;
}
	div#header p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}

div#content {
	padding:0em 0em 5em; /* bottom padding for footer */
	background-color: #eeeeee;
}
	div#content p {
	}

div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	background:#eeeeee;
}
	div#footer p {
		padding:1em;
		margin:0;
	}


