/*
CSE 190 M, Summer 2011
Style sheet for colored rectangles example
*/

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

/*
all rectangles should be 50x50 px in size, have a 2px-thick black
border, and should be able to be positioned at any coordinates
within the rectanglearea
*/
.rectangle {
	background-color: red;
	border: 2px solid black;
	height: 50px;
	width: 50px;
}
