/* 
boxmodel.css
Style sheet for Box Model example
*/

body {
	font-size: 50pt;
	margin: 0;
}

div {
	background-color: lime;
	margin: .5em;
	padding: .25em;
	border: solid .125em red;
}

#foo {
	margin-bottom: -.25em;
}