    /*
      Project 1 Final external CSS
      Your Name: Sterne Maher
      Today's Date: 10/3/2013
    */
	
	/* psuedo selector */
a:hover{
	color: yellow;
	font-style: italic;
	font-weight: 900;
	font-size: x-large;
}

	/* class selector */
.center{
	text-align: center;
}

	/* descendent selector */
h1 em{
	color: maroon;
}

body{
	font-size: 1.2em;
	font-family: Arial, san-serif;
	color: navy;
	background-color: green;
	margin-left: 10em;
	margin-right: 10em;
}
h1{
	font-style: italic;
	font-weight: normal;	/* h1 does not appear in bold */
	font-size: 150%;
	font-family: Cooper Black, serif;
}

	/* group selectors */
h2, h3{
	color: red;
	background-color: wheat;
	font-family: "Times New Roman", Times, serif;
}
h4{
	font-variant: small-caps;
	text-transform: uppercase;
	font-style: italic;
}
em{
	color: black;
	font-style: normal; /* not in italics */	
	font-weight: 900; /* boldest */
}
a{
	font-style: bold;
	color: blue;
	text-indent: 5em;	
	text-decoration: none;
}
footer{
	color: purple;
}