﻿/*
 * 100% height layout with header and footer
 */

html,body {
	margin: 0 0 1px 0;
	padding: 0;
	height: 100%; /* needed for container min-height */
}
div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:780px;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/
	min-height:100%; /* real browsers */
}
div#header {
	width: 100%;
}
#navigation {
	width: 100%;
	float: left;
}
div#content {
}
div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
}