﻿/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background:#778061;
	font-family:verdana;
	font-size:11px;
}


html {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background:#778061;
	font-family:verdana;
	font-size:small;
}


h1 {
	font-size:1.2em;  
	margin:0 0 0.5em;
}

a {
		color:orange;
}

h1 {
		color:orange;
}

p { 
	line-height:1.5; 
	margin:0 0 1em;
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:960px;
	background-image:url('../images/content_background.jpg');
	background-repeat:repeat-y;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
}

div#header {
	width: 960px;
}

div#content {
	padding:1em 4em 5em; /* bottom padding for footer */
}

div#content p {
	text-align:justify;
	padding:0 1em;
}

div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	background:#ddd;
	border-top:6px double gray;
}

div#footer p {
	padding:1em;
	margin:0;
}
