    /*
      Project 1 Final external CSS
      Your Name: Sterne Maher
      Today's Date: 10/3/2013
    */
	/* psuedo selector */
.center{
	text-align: center;
}
body {
	font-size: 1.1em;
	font-family: Arial, Helevtica, sans-serif;	/* Arial or Helvetica */
	background-color: purple;
}
h1{
	font-style: italic;
	font-weight: normal;	/* h1 does not appear in bold */
	font-size: 150%;
	font-family: Cooper Black, serif;
	text-align: center;	
}
h2, h3{
	color: white;
	background-color: red;
	font-family: "Times New Roman", Times, serif;
}
h4{
	font-variant: small-caps;
	text-transform: uppercase;
	font-style: italic;
}
em{
	color: green;
	font-style: normal; /* not in italics */	
	font-weight: 900; /* boldest */
}
a{
	font-size: 1.5em;
	font-style: bold;
	color: blue;
	text-indent: 5em;	
	text-decoration: none;
}