/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */

html,body {
	margin:0;
	padding:0;
	height:100%; /* needed for container min-height */
	background:#370028;
	
	font-family:arial, sans-serif;
	font-size:12px;
	color:#ffffff;
}

h1 { 
	font:1.5em arial, sans-serif; 
	margin:0.5em 0;
}

h2 {
	font:1.25em arial, sans-serif; 
	margin:0 0 0.0em;
}

h3 {
	font:2.0em arial, sans-serif; 
	margin:0 0 0.0em;
}
h4 {
	font:2.0em arial, sans-serif; 
	margin:0 0 0.0em;
}

h5 {
	font:1.5em arial, sans-serif; 
	margin:0 0 0.0em;
}

h6 {
	font:1.25em arial, sans-serif; 
	margin:0 0 0.0em;
}
	h1, h2, a {
		color:#ecdf42;
	}
	
	h3 {
		color:#ffffff;
	}
	
	h4 {
		color:#ecdf42;
	}
	
	h5 {
		color:#ffffff;
	}
	
	h6 {
		color:#ffffff;
	}

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:810px;
	background:#ba2394; /* real browsers */
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	
	min-height:100%;
}

div#header {
	padding:0;
	background:#000000 url("../csslayout.gif") 100% 10px no-repeat;

}
	div#header p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}

div#content {
	padding:1em 1em 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:#6f0051;
}
	div#footer p {
		padding:1em;
		margin:0;
	}

