/*
Author			Nate Banion
Date			3/27/11
Description		Style sheet for collection of ecocriticism essays from ENGL 581

Notes:
	* This CSS is organized by divs as they appear in the essays.
	* Each div breaks down into a list of subdivs and a list of other elements.
	* Div "essay" contains all other divs. All other divs are nested inside their parent divs.

---CSS Table of Contents---

General elements and classes
	General elements (alphabetical)
	General classes (alphabetical)
Essay
	Pre_content
		Pre_content divs
		Pre_content elements
	Content
		Content divs
		Content elements
	Post_content
		Post_content divs
		Post_content elements
*/

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
General elements and classes
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

/*-------------------------------------------------------------
General elements
---------------------------------------------------------------*/
a 
	{
	}
	
body
	{
	/*color:blue;*/
	font-family:"Times New Roman", serif;
	margin-left:5em;
	margin-right:5em;
	margin-top:1em;
	margin-bottom:1em;
	}
	
h1
	{
	}
	
h2
	{
	/*color:blue;*/
	text-align:center;
	}
	
span 
	{
	}
	
/*-----------------------------------------------------------------
general classes
-----------------------------------------------------------------*/

a.note /*links from text above to a note below*/
	{
	/*color:orange;*/
	}
	
a.see_in_essay /*links from note below to text above*/
	{
	/*color:orange;*/
	}

div.quotes_pithy /*quotes_pithy: quotes to set the stage*/
	{
	/*color:blue;*/
	text-align:center;
	margin-left:5em; 
	margin-right:5em;
	margin-bottom:5em;
	}
	
div.quotes_pithy p.attribution /*.attribution: name following a quotation*/
	{
	/*color:blue;*/
	text-align:right;
	} 

/*-----------------------------------------------------------------
general ids
-----------------------------------------------------------------*/


#todo /*todo: things that need to change*/
	{
	color:red;
	}



/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Essay
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/

#essay /*essay: the whole essay*/
	{
	/*color:blue;*/
	}

/*-------------------------------------------------------------
---------------------------------------------------------------
pre_content: introductory information before content of the essay
-----------------------------------------------------------------
-----------------------------------------------------------------*/
#essay #pre_content 
	{
	/*color:blue;*/
	}

/*----------------------------------------------------------------
pre_content divs
-----------------------------------------------------------------*/
#essay #title_hidden /*essay_title_hidden: This h1 is first in the document for accessibility reasons.*/
	{
	/*color:blue;*/
	display:none;
	}
	
#essay #class_info /*class_info: name of the collection = "New Directions in Ecocriticism" */
	{
	/*color:blue;*/
	text-align:left;
	font-style:oblique;
	}
	
#essay #chapter /*chapter: number of the essay in the series -- NOT IN USE*/
	{
	/*color:blue;*/
	margin-top:5em;
	margin-bottom:5em;
	font-size:x-large;
	text-align:center;
	}
	
#essay #title /*essay_title: title of the student's essay*/
	{
	/*color:blue;*/
	text-align:center;	
	}
	
/*-----------------------------------------------------------------
pre_content elements (none)
-----------------------------------------------------------------*/
	
	
/*-----------------------------------------------------------------
-------------------------------------------------------------------
content: The actual content of the essay
-------------------------------------------------------------------
-------------------------------------------------------------------*/
#content 
	{
	/*color:orange;*/
	}
	
/*-----------------------------------------------------------------
content divs
-----------------------------------------------------------------*/
div.image /*.image: image in the content*/ 
	{
	text-align:center;
	margin-bottom:4em;
	}
		
div.image>p /* caption to an image */
	{
	/*color:blue;*/
	text-indent:0em;
	margin-top:0em;
	}
	
div.essay_chapter /* author-designated logical breaks in the essay. If not designated, the whole essay is treated as one chapter. */
	{
	/*color:blue;*/
	}
	
/*-----------------------------------------------------------------
content elements
-----------------------------------------------------------------*/
#content p 
	{
	}
	
div.essay_chapter>p.begin /* beginning of a paragraph. Requires indentation */ 
	{
	/*color:blue;*/
	text-indent:3em;
	margin-top:1em;
	margin-bottom:1em;
	}

div.essay_chapter>p.continue /* paragraph continues after a quotation, list, etc. No indentation. */
	{
	/*color:blue;*/
	text-indent:0em;
	}
	
#content ol 
	{
	/*color:blue;*/
	margin-top:1em;
	margin-bottom:1em;
	}
	
#content ul 
	{
	/*color:blue;*/
	margin-top:1em;
	margin-bottom:1em;
	}
	
#content blockquote 
	{
	/*color:blue;*/
	margin-left:5em;
	margin-right:5em;
	margin-top:2em;
	margin-bottom:2em;
	}
	
blockquote>p
	{
	/*color:blue;*/
	}
	
/*-----------------------------------------------------------------
-----------------------------------------------------------------
post_content: Author, Notes, bibliography, etc
-----------------------------------------------------------------
-----------------------------------------------------------------*/
#post_content 
	{
	margin-top:1em;
	margin-bottom:1em;
	}

#essay_author /*essay_author: student who wrote the essay*/
	{
	/*color:blue;*/
	text-align:right;
	margin-bottom:5em;
	} 

#essay_author_name /* name of student */
	{
	}

#essay_author_department /*department of student */
	{
	}

#essay_author_university /*university of student*/
	{
	}
	
/*-----------------------------------------------------------------
post_content divs
-----------------------------------------------------------------*/
#notes 	/*notes: clarifications for marked portions of the content*/
	{
	/*color:blue;*/
	}

/*-----------------------------------------------------------------
notes elements
-----------------------------------------------------------------*/

#notes ul
	{
	padding:0;
	margin:0;
	list-style-type:none;
	}

#bibliography 	/*bibliography: the bibliography*/
	{
	/*color:blue;*/
	}	

/*-----------------------------------------------------------------
bibliography elements
-----------------------------------------------------------------*/

#bibliography ul 
	{
	padding:0;
	margin:0;
	list-style-type:none;
	}

#bibliography li 
	{
	text-indent:-5em;
	margin-left:5em;
	margin-bottom:0em;
	}

#back_to_contents
	{
	margin-top:2em;
	color:blue;
	text-align:center;
	}