/**
 * Print Layout (print.css)
 * Makes the layout Printable.
 * Credits: Blueprint CSS
 *
 * Description:
 *        This print stylesheet is in it's most basic form.
 *		  You'll need to add additional styling under [4] accordingly.
 */
 
/* Document Body [1] */
	body 							{ background: #fff; color: #000; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 10pt; line-height: 1.5; }

/* Anchor Element [2] */
	a:link, a:visited 				{ background: transparent; font-weight: 700; text-decoration: underline; }
	a:link:after, a:visited:after 	{ content: " (" attr(href) ") "; font-size: 90%; }

	/* If you're having trouble printing relative links, uncomment and customize this:
	   (note: This is valid CSS3, but it still won't go through the W3C CSS Validator) */
	
	/* a[href^="/"]:after {
	  content: " (http://www.yourdomain.com" attr(href) ") ";
	} */

/* Headings [3] */
	h1, h2, h3, h4, h5, h6 			{ font-family: "Helvetica Neue", Arial, "Lucida Grande", sans-serif; }

/* Print Hide [4] */
	#header, #secondary, #footer 	{ display: none; }

/* Element Changes [5] */
	blockquote 						{ margin: 1.5em; padding: 1em; font-style: italic; font-size: .9em; }
	code 							{ font: .9em "Courier New", Monaco, Courier, monospace; } 
	img								{ float: left; margin: 1.5em 1.5em 1.5em 0; }
	a img 							{ border: none; }