#container {
		position: relative; /* the "relative" position property allows adjusting the position relative to where it would be placed in the default, static mode*/
		width: 400px;
		height: 400px;
		border-style: solid; /* Add a visible border to the element*/
		border-width: 1px;
		margin-left: auto; /* Setting left/right margins to "auto" will automatically center the element horizontally */
		margin-right: auto;
}

#simFrame {
	position: absolute;
	width: 340px;
	height: 290px;
	left: 30px;
	top: 30px;	
}

#startstopButton {
	position: absolute;
	left: 30px;
	top: 350px;
	width: 100px;
	height:25px;
}

#resetButton {
	position: absolute;
	left: 150px;
	top: 350px;
	width: 100px;
	height:25px;
}
