/*
CSE 190 M, Spring 2009, Marty Stepp
Style sheet for colored rectangles example
*/

#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;
}
