/*	
	--------------------------------------------------
		Main Recipe stylesheet for Harbor House Site
		by: Richard Manning
		Date: January 2009
	--------------------------------------------------
*/

.recipe-container {
	background: #fff;
	border: 1px solid #e4e4e4;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	margin: 0 auto;
	padding: 10px;
	position: relative;
	width: 525px;
}

.recipe-container div.recipe-header {
	height: 42px;
	padding: 0;
	margin: 0 0 24px 0;
	width: 100%;
}

.recipe-container div {
	background-color: #fff;
	margin: 0 auto;
	padding: 8px 0;
	width: 86%;
}

.recipe-title {
	border-bottom: 1px solid #890202;
	color: #890202;
	font-size: 1.5em;
	letter-spacing: .05em;
	margin-bottom: 8px;
	padding-bottom: 2px;
}

.recipe-directions {
	background-color: #fff;
	font-size: .75em;
	letter-spacing: normal;
	line-height: 1.4em;
	padding: 2px 0;
}

.recipe-directions.start {
	font-style: italic;
	font-weight: bold;
	margin-top: 10px;
}

.recipe-directions.end {
}

.recipe-ingredients {
	background-color: #fff;
	font-size: .75em;
	line-height: 1.5em;
}

div.recipe-footer {
	padding: 20px 0 0;
	width: 100%;
}

a.print-recipe {
	background: url(../img/printButton.gif) no-repeat center top;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .5em;
	display: block;
	margin: 10px 0 0 14px;
	padding-top: 18px;
}

	/*
		----------------------
		Printer-friendly rules
		----------------------
	*/

@media print {

	#outer-container {
		display: none;
	}
	
	.recipe-container {
		border: none;
		margin: 0;
	}
	
	a.print-recipe {
		display: none;
	}
	
	.recipe-medal {
		display: none;
	}
	
	#sub-footer {
		display: none;
	}

}