/*
CSE 190 M, Marty Stepp
Style sheet for colored rectangles example
*/

#rectanglearea {
	width: 800px;
	height: 300px;
	position: relative;
	border: 2px solid black;
}

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