@charset "utf-8";
/* CSS Document */
/* The CSS that's required to position the footer */

	html
	{
		height: 100%;
	}

	body
	{
		height: 100%;
	}

	#wrapper 
	{

		min-height: 100%;

	}

	*html #wrapper 
	{
		height: 100%;
	}

	#nonFooter
	{
		position: relative;
		min-height: 100%;
		padding-bottom:2em;
		background:#ffffff;	
	}

	* html #nonFooter
	{
		/*height: 100% */   /* cannot have this here or IE 6 doesn't work right */
		padding-bottom:2em;
		background:#ffffff;	
	}

	#footer
	{
		height:1.8em;
		position: relative;
		margin: -1.8em auto 0 auto;
	}

	/* A CSS hack that only applies to IE -- specifies a different offset for the footer */

	* html #footer
	{
	margin: -1.8em auto 0 auto;
	}


