/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 * Feel free to copy/use/change/improve
 */


#background {
  margin-left: auto;
  margin-right: auto;  
	width: 1001px;
	height: 100%;
  vertical-align: top;
  table-layout: fixed;
}

#background td {
  vertical-align: top;
  text-align: left;
  padding-top: 0px;
  
}

td.verticalline {
  width: 1px;
  font-size: 1px;
  line-height: 1px;
  background-color: #EFEFEF;
}
 
html,body {
	margin: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:1003px;
	
	
	height:auto !important; /* real browsers */
	height:100%; /* IE6: treaded as min-height*/

	min-height:100%; /* real browsers */
	
}

div#headerbase {
	padding:1em;

	border-bottom:6px double gray;
}
	div#headerbase p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}

div#contentbase {
	padding-bottom: 5em; /* bottom padding for footer */
}
	div#contentbase p {
		text-align:justify;
		padding:0 1em;
	}

div#footer {
	position:absolute;
	width:100%;
	bottom:0; /* stick to bottom */
	
	border-top:6px double gray;
}
	div#footer p {
		padding:1em;
		margin:0;
	}
