/**
 * 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:#efefef url(../images/bckgrnd.jpg) 50% 0% repeat-y;
	
	
	font-family:arial,sans-serif;
	font-size:small;
	color:#333;
}

h1 { 
	font:1.5em arial,sans-serif;
	margin:0.5em 0;
}
h2 {
	font:1.4em arial,sans-serif; 
	margin:0.5em 0;
}
h3 { 
	font:1.3em arial,sans-serif; 
	margin:0 0 0.5em;
}
h4 {
	font:1.2em arial,sans-serif; 
	margin:0 0 0.5em;
}
	h1, h2, h3, h4 {
		font-weight:bold;
		color:#000;
	}
	a {
		color:#09c;
	}

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:924px;
	background:#fff;
	border-left:1px solid #898989;
	border-right:1px solid #898989;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

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

div#header {
	padding:0em 5em;
	background:#fff;
	width:794px;
	height:120px;
	background:#fff 0% 0% no-repeat;
}
	div#header p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}
	div.title {
		font-family:georgia,serif;
		font-weight:bold;
		font-size:1.5em;
		margin:0 10 0 10;
	}

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:#fff;
	border-top:1px solid #ccc;
	text-align:right;
}
	div#footer p {
		padding:0.2em;
		margin:0;
	}

.illustration {
	margin:10px;
}
	.illustration p {
		text-align:right;
		font-style:italic;
	}

div#references {
	width:90%;
	margin-left:auto;
	margin-right:auto;
	border-top:1px solid #cccccc;
	clear:both;
}
	div#references p {
		font-size:80%;
		font-style:italic;
		margin:0px;
	}