/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 */

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



p { 
	line-height:1.5; 
}

div#container {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:100%;
	background:#ffffff;
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

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

div#header {
	padding:1em;
	background:#ffffff;
}


div#header p {
	text-align: center;
	}

div#content {
	padding:1em 1em 5em; /* bottom padding for footer */
}

div#content p {
		text-align: center;
		padding:10px 0 0 0;
	}

div#footer {
	position:absolute;
	width:100%;
	height:50px;
	bottom:0; /* stick to bottom */
	background:#ffffff;
}

div#footer p {
	color:#666666;
	font-size:8px;
	padding:25px 0 0 25px;
	margin:0;
}

div#footer a  {
	text-decoration: none;
}

div#content p#copy { 
	font-size:12px; 
	padding: 0 0 1px 0;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	width: 460px;
	line-height:normal;
} 

div#content p#image { 
	padding-bottom: 10px;
} 

