/*
CSE 190 M, Spring 2012
Style sheet for colored rectangles example

Note that the rectanglearea sets a 'relative' position
so that the rectangles' offsets will be relative to its position.
*/

#rectanglearea {
	width: 700px;
	height: 500px;
	position: relative;
	border: 2px solid black;
}

.rectangle {
	width: 50px;
	height: 50px;
	border: 2px solid black;
	position: absolute;
}
