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

Revised 29 July 2011:
- Move 'position: absolute' styling from JS to CSS (unobtrusive styling)
*/

#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 {
	position: absolute;
	background-color: red;
	border: 2px solid black;
	height: 50px;
	width: 50px;
}
