    /* Basic layout: centered content with footer pushed down */

    html, body {
	margin: 0;
    height: 100%;
    }
	
    .wrapper {
	width: 900px;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    display:inline-block; /* for centering */
    margin: 0 auto -3em; 
    }
	
    .footer,
	.push {
    display:inline-block; /* for centering */
	width: 900px;
    height: 3em;
    clear: both; /* for multi-column layouts */
    }
