/* -- Page styling, unrelated to centering ----- */

body {
	/* Page styling, unrelated to centering */
	background-color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	color: #333;
	font-size: small;
	text-align:center;
}

a {
	    color: #878787;
		text-decoration:underline;
	}
	
	a:visited {
		color:#878787;
	}
	
	a:hover {
	color:#2D2D2D;
	
	}


/* -- Set a background image for the HTML ----- */
body {
	
}


/* -- Code for vertical centering ----- */

* {
	margin: 0;
	padding: 0;
}

/* macs won't see this! \*/
html, body { 
     height:100%;
     width:100%;
}
/* END mac */

#outer {
	height:100%;
	width:100%;
	display:table;
	vertical-align:middle;
}

#container {
	display:table-cell;
	vertical-align:middle;
}

#inner {
	text-align: center;
	width: 900px;
	height: 660px;
	margin-left:auto;
	margin-right:auto;
}
