/* Global margin and padding reset */
* { margin: 0; padding: 0; }

html,body {
	font-family: Arial, Sans-serif;
	font-size: 100%;
	color: #333333;
	background-color: #ffffff;
	height: 100%;
}

#container {
	height: 100%;
	min-height: 100%;
	position: relative;
}

#header {
	padding: 10px;
}

#body {
	padding: 10px;
	padding-bottom: 20px;   /* Height of the footer */
}

#footer {
	position:absolute;
	bottom: 0;
	width: 100%;
	height: 20px;   /* Height of the footer */
	font-size: 0.75em;
	color: #999999;
	text-align: center;
}