 /* The goal is to hide everything on the page but the recipe.  Modify the element names in the line below to correspond with your theme */
 
 /* Add a class of .noprint to images or other elements on your page that you want to hide */
 #header, #nav, .postmetadata, #commentform, #sidebar, #footer, .noprint {display: none;}
 
 
 /* The containing div for your post.  Make this hidden */
.post { visibility :hidden; height:1px; margin:0; padding:0; }


/* The containing div for your recipes.  Set to be visible to override the hidden class above */
.hrecipe  {
    visibility: visible; 
	margin:0;
	padding:15px;
	position: absolute;
	top:0;
	width:546px;
	border: 1px dotted #aaa;
	font-family: arial, verdana, helvetica, sans-serif;
	font-size: 11px;
	color:#333;
	line-height:17px;
	left:0;
	
	}

.hrecipe h2 { font-size:17px; font-weight:bold; color:#942923;}

.hrecipe h4 { font-size:15px; font-weight:bold; color:#87993a;}

a,
a:link,
a:active,
a:visited { color:#942923; text-decoration:none; }


 