@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain) */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
	margin: 0;
	padding: 0;
}
blockquote {
	quotes: none;
	margin-left: 1.5em;
}

ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* End Reset */


body {
	font: normal 100% "Open Sans", sans-serif;
}

h2 {
	color: #fff;
	display: inline-block;
	background: #8BB5BC;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 1.75em;
	padding: 0.25em;
	margin-bottom: 1em;
}

h3 {
	color: #fff;
	display: inline-block;
	background: #DE5022;
	font-weight: 400;
	text-transform: uppercase;
	font-size: 1.33em;
	padding: 0.25em;
}

.wrapper {
	width:100%;
	margin:0;
	background-size:cover;

}

#header {
	width:100%;
	height: 120px;
	background: #8E6F64;
	}

nav#primary {display:none;}
	
#container {
	background: #fff;
	width: 100%;
	max-width: 1180px;
	margin-right: auto;
	margin-left: auto;
	background: rgba(255,255,255,1);
	font-size: 0.75em;
}

section {
	padding-bottom: 1.5em;
}

#hero-image {
	position:relative;
	width:96%;
	padding: 0 2%;
	margin: 0 auto;
}

#hero-image img {
	width: 100%;
	max-width: 100%;
	}

#hero-image figcaption {
	width:94%;
	padding: 0 3%;
	z-index:100;
	position: absolute;
	top: 55%;
}

#hero-image figcaption h1 {
	font-size: 1.9em;
	color: #000;
	background: #fff;
	padding: 0.33em 0.5em;
	display: inline-block;
	background: rgba(255,255,255,0.7);
	font-weight: 400;	
}

#hero-image span {
	font-size: 1.1em;
	color: #fff;
	background: #DE5022;
	padding: 0.33em 0.5em;
	display: inline-block;
	margin: 0;
	font-weight: 400;
	text-transform: uppercase;
}

#hero-image span.readytime {background: rgba(222,80,34,0.85);}

#hero-image span.skill {background: rgba(155,124,111,0.85);}

#recipe-tags {display:none;}
#social-icons {display:none;}
#related-entries {display:none;}
#newsletter-signup {display:none;}

#logo {
	margin:auto;
	padding: 1em 0;
	width:25%;
	max-width: 200px;	
	}

#logo img {
	width: 100%;
	height: auto;	
	}

#content {
	width: 94%;
	max-width: 1100px;
	margin: 0 auto;
	display: block;
	padding: 0 3%;
	box-sizing: border-box;
	}
	
#content-main {
	width: 100%;
}

#content-main #social-icons {
	width: 100%;
	height: auto;
	margin: 1em 0 2em 0;
	}

#content-sidebar {
	display: none;
}


/* Relatively position the figure so we can absolutely position the caption over the photo */
.thumbs figure {
	position: relative;
	max-width: 350px;
	margin: 0 5% 1em 0;
	width: 45%;
	float:left;
	border-top: 2px solid #DE5022;
}

.thumbs figure img {
	width: 100%;
	max-width:100%;	
	}

.thumbs figcaption {
	position: absolute;
	width: 94%;
	padding: 0.25em 3%;
	color: #000;
	background: #fff; /* Fallback color */
	background: rgba(255, 255, 255, .8);
	top: 50%;
	font-weight: 600;
}

.thumbs figure:hover figcaption {
	background: rgba(255, 255, 255);
}
/* --- */

.advert {
	background: #8BB5BC;
	max-width: 300px;
	height: auto;
margin: 40px auto 50px;
}

.advert img {
	width:100%;
	max-width: 100%;
	height: auto;
}

.ingredients {
	margin: 1.75em 0;
}

.ingredients > li {
	padding:0.25em 0.5em;
	list-style:none;
}

.ingredients table {
	width: 100%;
	max-width: 100%;
	font-size: 0.9em;
	border: 1px solid #eee;
	border-radius: 9px;
    -moz-border-radius: 9px;
	overflow: hidden;
	}

.ingredients table td {
	padding: 0.5em 2%;
	}
	
.ingredients table tr:nth-child(odd) {
	background: #F5F5F5;
}
.ingredients table tr:nth-child(even) { background-color:#fff; }

.directions {width: 100%;}
.ingredients {width: 100%;}

section ol {
	counter-reset:li; /* Initiate a counter */
	margin-left:0; /* Remove the default left margin */
	padding-left:0; /* Remove the default left padding */

}
section ol > li {
	position:relative; /* Create a positioning context */
	margin:0 0 0.5em 2em; /* Give each list item a left margin to make room for the numbers */
	padding:0.25em 0.5em; /* Add some spacing around the content */
	list-style:none;
}
section ol > li:before {
	content:counter(li); /* Use the counter as content */
	counter-increment:li; /* Increment the counter by 1 */
	/* Position and style the number */
    position:absolute;
	min-width:1.5em;
	top: 6px;
	left:-2em;
	color:#fff;
	background:#DE5022;
	text-align:center;
	font-size: 80%;
	padding-top: 2px;
	padding-bottom: 2px;
}
section li ul {margin-top:6px;}
section ol ol li:last-child {margin-bottom:0;}

