A working div footer example

	/* The CSS that's required to position the footer */
 
	html
	{
		height: 100%;
	}
 
	body
	{
		height: 100%;	
	}
 
	#page
	{
		position: relative;
		min-height: 100%;
	}
 
	* html #page
	{
		height: 100%;
	}
 
	#footer
	{
		position: absolute;
		bottom: 0;
	}