/*

* Vertical centering with inline-block + generated-content
* Julien Cabanès
* based on http://css-tricks.com/centering-in-the-unknown/
* Amended by Philip Taylor to allow for undersized windows
* Colours converted to Etheridge set

*/
 
html, body {height: inherit}
body 
	{
		display: inherit;
		margin: 0;
		padding: 0;
		width: inherit;
		text-align: inherit;
		overflow: inherit;
		white-space: inherit
	}

body:before 
	{
		display: inherit;
		content: inherit;
		height: inherit;
		vertical-align: inherit
	}
 
div.MainContent
	{
		display: inherit;
		vertical-align: inherit;
		padding: inherit;
		/* Fallback to look decent w/out Flexbox */
		/* max-width: 10em; */
		/* Make it pretty */
		background: inherit;
		text-align: inherit;
		border-radius: inherit;
		color: inherit
	}