/**
 * 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:#C0C0C0;
	
	font-family:arial,sans-serif;
	font-size:small;
	color:#666;
}

IMG {border: 0}

h1 { 
	font:1.5em georgia,serif; 
	margin:0.5em 0;
}

h2 {
	font:1.25em georgia,serif; 
	margin:0 0 0.5em;
}


p { 
	line-height:1.5; 
	margin:0 0 1em;
}

div#layout {
	position:relative; /* needed for footer positioning*/
	margin:0 auto; /* center, not in IE5 */
	width:90%;
	background:#ffffff;
	border-left: solid 1px #000000;
	border-right: solid 1px #000000;
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */
}

div#banner {
	position: relative;
	width: 100%;
	margin: 0px;
	border-bottom: solid 1px #000000;
	height: 102px;
}

div#menu_frame {
	position: relative;
	width: 100%;
	height: 40px;
}

div#content_frame {
	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:#ffffff;
	text-align: center;
}
	div#footer p {
		padding:1em;
		margin:0;
	}
