/* CSS: 2.2. stylesheet for week 2 homework assignment


old comment:
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.

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: silver url(../images/bg2.jpg) repeat-y; font-family: Verdana, Arial, sans-serif;}
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;}

