/* Print stylesheet
----------------------------------------------
	Name: Firstname Lastname
	Date: Day Month Year
*/ 


/* Index
----------------------------------------------
	1. Typography
	2. Hidden Elements
*/


/* 1. Typography
----------------------------------------------*/

body
{
	margin: 20pt;
	color: black;
	font: normal 12pt/1.5em "Lucida Grande",Arial,Helvetica,sans-serif; 
	/* for more information on font stacks please visit - http://articles.sitepoint.com/article/eight-definitive-font-stacks */
	/* for more information on css typeset please visit - http://www.jan-quickels.de/tools-web-typography/ */
}

/* --- links */

a,
a:link,
a:active,
a:visited
{
	color: black;
	text-decoration: none;
}

/* --- images */

img
{
	border: 0;
}
	
	
/* 2. Hidden Elements
----------------------------------------------*/

/* hide here any elements you do not want to print */

form,
#head ul, 
#banner,
#sections,
#footer span,
.subscribe,
#sideBar
{
	display: none !important;
}