p
{
	color:green;  /* This is a CSS comment */
	font-size:1.5em;
	border: 1px solid gray;  /* applies to all four sides of the border */
	padding: 20px;  /* applies to all four "sides" of the padding */
}

div
{
	margin-top: 30px;  /* applies to the top margin */
}

.normalText
{
	font-family:Arial, Helvetica, sans-serif;
}

.surprise
{
	font-style:italic;
}

#firstParagraph
{
	font-weight:bold;
}

#mainDiv
{
	border: 1px solid red;
}

#topDiv
{
	border: 1px solid green;
}

#bottomDiv
{
	border: 1px solid black;
}

.fancy
{
	font-size: 2em;
	font-style: italic;
	color: red;
}