/* Homework CSS-4.1 Peter Hulm  based on mystyle.css* 6/11/2005 */

/* this uses pseudo-selectors for first-line, first-letter */

body {

font-family: Georgia, "Times New Roman", serif;
font-size: medium;
margin-left:150px;
color: white;
background: maroon url(../images/wordbg.gif) repeat-y;
	}

h1, h2 {font-family: Verdana, Arial, sans-serif; font-size:x-large; color: yellow;
	margin-left:-150px;}

h1 {font-size:x-large;}

h2 {font-size:large;}

p {text-align:justify;}

ol ul li {list-style-type:none;}

/* new */

p:first-line {font-variant: small-caps;}
p:first-letter {font-family: Verdana, Arial, sans-serif;
		font-size: 20px; font-weight:bold; color: yellow;
		}

/* new: this section changes links from the normal link colors */
a:link {color: yellow; text-decoration: underline;}
a:hover {color: white; background-color: black; text-decoration: underline;}
a:active {color: gray; text-decoration: underline;}
a:visited {color: black; background-color: silver; text-decoration: underline;}

li {list-style-type:square;}

/*ends mystyle.css */