/*Use this in the web page to link the css
Lab Eight - Cascading Style Sheets 

 Use in-line, document and external styles

1. Use an in-line style for one of your headings. 
2. Use document level styles for one of your pages (not your home page) that defines headings. 
3. Use a linked style sheet for your home page that includes at least five entries. 

<link rel=stylesheet type="text/css" href="lab3.css">
<link rel=stylesheet type="text/css" href="http://www.geocities.com/matthews_html_cit145/LabEight.css">
</head>
*/

body 	{font-family: Verdana, Arial, Helvetica, sans-serif}

h1 {text-align: center; font-size: 200%; font-style: italic; color: gray; font-weight: bold}

h2	{font-style: italic; color: gray}

h3	{color: yellow; font-style: italic}

p	{font-family: Helvetica, Arial, sans-serif; color: gray}

a:link	{color: yellow}
a:active {color: orange; font-weight: bold}
a:visited {color:blue}

em	{font-family:  Arial, Helvetica, sans-serif}

ul li {color: gray; font-style: italic; list-style: upper-roman}
ul ul li {color: yellow; font-style: normal; list-style: upper-alpha}
ul ul ul li {color: white; font-style: bold; list-style: lower-alpha}

ol li {color: gray; font-style: italic; list-style: upper-roman}
ol ol li {color: gray; font-style: normal; list-style: upper-alpha}
ol ol ol li {color: white; font-style: bold; list-style: lower-alpha}

/*Classes*/
p.gray {font-style: normal;
	color: gray}

p.green {font-style: bold;
	color: green}
p.purple {font-style: normal;
	color: purple}
p.red {font-style: normal;
	color: red}