/*
CSS for Week 5 Assignment - Sheila Hart-Fowler

Al, I was having serious issues with getting the validator to accept my font-families and ended up editing fonts out in order to get it to work. Using " " I had originally spec'd "Gill Sans", Calibri, "Trebuchet MS", sans-serif for body, h3, p and blockquotes. I got errors with that. I also had spec'd Baskerville, "Times New Roman", Times, serif for h1, h2, and h4. Again errors. It seemed anything I had in " " marks bounced. Can you help me figure out what I was doing wrong?
*/
	
* {margin: 0;
	padding: 0;}
	
body {font-size: .9em;
	line-height: 1.5em;
	background-color: white;
	color: black;
	margin-top: 1em;}

body, h3, p, blockquote {font-family: Gill, Calibri, sans-serif;
	font-weight: normal;}

h1, h2, h4 {font-family: Baskerville, Times, serif;
	font-weight: normal;}

h1 {font-size: 2.5em;
	letter-spacing: -.02em;
	float: right;
	padding-right: .5em;}
	
h2 {font-size: 1.75em;
	letter-spacing: -.02em;
	color: #900;
	padding-top: .7em;}
	
h3 {text-transform: uppercase;
	color: #900;}

h4 {font-size: 10em;
	color: #900;}

p {padding-bottom: .7em;}

a {color: #555;}

a:hover {color: #900;}

a:visited {color: #c03;}

#header {display: block;
	width: 100%;
	height: 4em;
	float: left;
	padding-top: 1.5em;
	background-color: black;
	color: white;}

#byline p {margin-left: 5%;
	padding-top: 3.2em;
	font-size: .75em;
	font-weight: bold;
	text-transform: uppercase;
	color: #777;
	letter-spacing: .4em;}

#bodycopy {position: absolute;
	left: 35%;
	right: 10%;
	top: 8.5em;}
	
#quote p {float: left;
	margin-left: -20%;
	padding-right: 1em;
	padding-top: .5em;
	font-size: 1.5em;
	line-height: 1.5em;
	width: 90%;
	letter-spacing: .02em;
	color: #999;}
		
#initialcap {position: absolute;
	top: 9em;
	left: 22%;}
	
#author {position: absolute;
	left: 5%;
	top: 260%;
/* I had difficulty figuring out how to get this block to drop to the very bottom of the page. This works, but there are issues if the window size changes. Help? */	
	width: 20%;
	color: #888;
	background-color: #eee;
	padding: .75em;}
	
.extraspace {padding-top: 10em;}
	