@charset "UTF-8";
/* Print Recipes CSS */

* {
	margin: 0;
	padding: 0;
}

body {
	background: white;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10pt;
	margin: 10px 25px;
	text-align:	left;
	width: 600px;
}

hr {
	margin: 30px 0 30px 0;
}

/* HEADER -------------------------- */
#header {
	margin-bottom: 25px;
}
	#page_title {
		font-size: 15pt;
	}

/* RECIPE -------------------------- */
div.recipe {
	margin-bottom: 25px;
}

	.recipe_title {
		font-size: 14pt;
		margin-bottom: 10px;
	}
	
	.section_header {
		font-size: 11pt;
	}

	.ingredients {
		margin-bottom: 15px;
	}
		.recipe ul {
			list-style-type: none;
		}

		.ingredients li {
			padding: 3px 0;
		}
		
	.directions p {
		margin: 0 0 0.9em 0px;
	}
		.tip {}
		.nutritionInfo {
			font-size: 8pt;
		}


/* FOOTER -------------------------- */
#footer {
	font-size: 9pt;
	font-style: italic;
}

	#copyright {
		font-size: 8pt;
		font-style: normal;
	}