/*	Mac-style styles
	================  */

/* Our Mac OS screen-within-a-window */
#maxim
{
	position: relative;
	
	border: 1px solid black;  /* screen border, should be black */
	
	/* Like ProjectBuilder's "No Editor" */
	background-color: white;
	color: gray;
	
	/* centered horizontally */
	margin-left: auto;
	margin-right: auto;
	
	/* initial screen size */
	width: 512px;
	height: 384px;
	
	/* clip content exceeding screen bounds */
	overflow: hidden;
}

#maxim p
{
	position: absolute;
	
	bottom: 50%;
	width: 100%;
	
	margin-top: auto;
	margin-bottom: auto;
	
	text-align: center;
}

input[type=text]
{
	width: 80%;
}

