/*
CSE 190 M, Spring 2008 (Marty Stepp)
Style sheet for colored rectangles example (unfinished)
*/

#rectanglearea {
	width: 800px;
	height: 300px;
	border: 2px solid black;
	position: relative;
}

.rectangle {
	width: 50px;
	height: 50px;
	border: 2px solid black;
	position: absolute;
	background-color: red;
}
