/**
 * 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 */
}


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

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

div#header {
	padding: 1.5em 1em 0.5em 1em;
	background-color: #fff;
	margin-left: 5px;
	margin-right: 5px;

}


div#content {
	padding:0.5em 0.5em 3em; /* bottom padding for footer */
}

div#content p {
		text-align: left;
		padding:0 1em;
		
}

div#footer {
/*	position:absolute; */
	width:100%;
/*	bottom:0; /* stick to bottom */
	background:#fff;
	border-top: 0px gray;
	text-align: center;
	padding-bottom: 10px;
}

	div#footer p {
		padding:1em;
		margin:0;
	}