/* CSS Document */

#container {
	background-color: #000000;	/* temporary setting so you can simply see the layer to begin with */
	width: 1024px;								/* width of the layer */
	height: 724px;							/* height of the layer */
	position: absolute;					/* removes the layer from the "document flow", allows precise positioning */
	left: 50%;									/* moves the left edge of the layer halfway across the window */
	top: 50%;										/* moves the top edge of the layer halfway down the window */
	margin-left: -512px;				/* -512px negatively offsets the left margin (this should be half the value of the width) */
	margin-top: -362px;					/* -384px negatively offsets the top margin (this should be half the value of the height) */
}

