body {
  margin: 0;
  padding: 0;
  height: 100%; 
  max-height: 100%; 
  background-color: #FFF; 
  font-family: Helvetica, Arial, Verdana, sans-serif; 
  font-size: 12px;
  overflow: hidden;
}

#header {
	top: 0;
	left: 0; 
	width: 100%; 
	height: 100px;
	position: absolute;
	overflow: auto; 
	background-color: #C00;
	border-bottom: 5px solid #900;
}

#header h1 {
	text-align: center;
	font-size: 48px;
	color: #FFF;
	padding-top: 25px;
	text-shadow: #000 1px 1px 5px;
	letter-spacing: -1px;
	margin: 0;
}

#container {
  top: 105px;
  left: 0;
  bottom: 50px; 
  right: 0;
  position: fixed;
  overflow: auto;
  background-color: #FFF;
  padding: 20px;
}

#container h1 {
	text-align: left;
	font-size: 32px;
	color: #C00;
	text-shadow: #000 1px 1px 3px;
}

#container p {
	text-align: justify;
	font-size: 12px;
	color: #000;
	line-height: 140%;
}

#footer {
  bottom: 0; 
  left: 0;
  width: 100%; 
  height: 45px; 
  overflow: auto;
  position: absolute;
  background-color: #C00;
  border-top: 5px solid #900;
}
  
#footer p {
	text-align: right;
	font-size: 10px;
	color: #FFF;
	padding-top: 5px;
	padding-right: 10px;
	font-weight: bolder;
}

/* HACKS para IE */

* html body {
	padding: 105px 0 50px 0; 
}

* html #container {
	height: 100%; 
	width: 100%; 
}

* html #header {
	height: 105px;
}

* html #footer {
	height: 50px;
}