@charset "utf-8";
/* print CSS  Document */
/* a font which has serif looks better in print */
body {
	font-family:"Times New Roman", Times, serif;
	color: #000;
	}
	/* sets the font for the entire page because the page width and everything is set from the div id= page-wrap*/
	#page-wrap{
		font-family: Georgia, "Times New Roman", Times, serif;
		color:#000;
	}
/* ********************** sets basic formatting for page for different typography ************************/	
		/*gives bold text*/
		.heavy {
		font-weight: bolder;
		}
		
		/*gives italic*/
		.italic {
		font-style:italic;
		}	
		
		div.image-right {	float: right;} /*floats image right*/
		div.image-left {	float: left;} /*floats image left*/
		.space { /* gives a 10 pixel space around anything */
		padding: 10px 10px 10px 10px;
		}
/* **********************  *******************     *****************   *********    *********************** */			
		
	/* removes borders from image links */
a img {
	border: none;
	}
	/* removes underlines and colors from links */	
a {
	text-decoration: none;
	color: #000;
	}

/*prints the actual url link after a link */
	/* uses the div~  .main-content then the "a" with a psuedoselector "after" - after any anchor link put some content */
	/* the content grabs the attribute link from the anchor which is the href and apply it in brackets a little smaller font */
	/* after the anchor links */
#main-content a:after {
	content: " [" attr(href) "] ";
	font-size: smaller;
	text-decoration: none;
}
/* keeps certain parts of the web page - navigation, quickjumps, from printing */
ul#nav, #spacer-bar, #quick-jumps, #right-column, #footer {
	display: none;
		}