/* CSS: 1.2. stylesheet for second homework assignment

This adds formatting for the ul selector to put the font in Georgia and serif alternatives. It also puts the td content in the same font.

I added a class property called keyword to align the table headings to the top -- not necessary since I could have specified td to be aligned to the top but this makes it explicit that there is some non-standard formatting being used.

Old comment:
This creates rules for the body, h1, h2 and p selectors. I also stipulated a size for h3, to make it fit in with the text font and size.

 */

body {background: #EAEAEA url(../images/bg2.jpg) repeat-y; font-family: Verdana, Arial, sans-serif;}
h2, h3, h4, p, ul, table { margin-left:110px;}
h1 {color:white; background: blue; border: 3px solid; padding: 3px 3px 3px 5px; font-size: x-large;}

h2 {color:maroon; font-size: large;}

h3 {font-size: medium;}


/* new */

p, .content, ul {font-family: Georgia, "Times New Roman", serif;}

.keyword { vertical-align: top;}

ul {
	padding-left: 25px;
}
