/* BASICS
*/
html, body { height: 100%; }
body { font-size: 76%; }
#container { font-size: 1.0em; }
h1, h2, h3, h4, h5, .title1, .title2, .title3, .title4, .title5 { display: block; clear: none; margin: 1.0em 0 0.5em; }
h1, h2, .title1, .title2 { clear: both; }
p { margin: 0 0 0.8em; }
ul, li { margin: 0; padding: 0; }
ul { margin: 0 0 0.8em 2.0em; }
ul ul { margin: 0.2em 0 0.2em 1.5em; }
.first { margin-top: 0; }

/* TYPOGRAPHY
*/
body, ul, li,
#navbar,
#foot {
	line-height: 1.2em;
}
h1, h2, h3, h4, h5,
.title1, .title2, .title3, .title4, .title5,
.pull div {
	line-height: 1.1em;
}
#catnav li {
	line-height: 1.0em;
}
#catnav p {
	font-size: 1.2em;
}
#navbar,
#aux input,
#sidebar,
.features,
.contents {
	font-size: 0.9em;
}
.pull div{
	font-size: 0.9em;
}

#catnav ul,
#foot {
	font-size: 0.8em;
}
/* HEADINGS AND TITLES
*/
h1, .title1 {
	font-size: 1.8em;
}
h2, .title2 {
	font-size: 1.3em;
}
h3, .title3, h4, .title4, h5, .title5 {
	font-size: 1.0em;
}
h4, .title4, h5, .title5 {
	font-style: italic;
}
h5, .title5 {
	font-weight: normal;
}
/* ELEMENTS, CLASSES, IDs
*/
blockquote {
	margin: 10px 0;
	padding: 5px 10px 0;
}
li.addendum {
	list-style: none;
	font-weight: normal;
	font-style: italic;
	padding: 2px 2px 2px 10px;
}
blockquote,
li.addendum {
	border: solid 1px;
	border-left: solid 4px;
	border-color: #ddd;
	background: #f9f9f9;
}
/* BACKGROUNDS
*/
.bg-lyellow {
	background: #ffffe9;
}
/* UTILITY CLASSES
*/
.noclear {
	clear: none;
}
div.clear {
	clear: both;
	margin: 0;
	padding: 0;
	font-size: 0.01em;
	line-height: 0.01em;
}
/* LINKS
// ieWin: w/ :link AND :visited (NOT :hover OR :active), unvisited links w/ a previous match display global :hover
//   like Moz when: visited links; all links w/ :hover OR :active; all links w/o global :hover OR :active 
*/
a {
	font-weight: bold;
	text-decoration: underline;
}
a:link {
	color: #063;
}
a:visited {
	color: #5F997C;
}
a:hover {
	text-decoration: none;
	color: #090;
}
a:active {
	text-decoration: none;
	color: #0d0;
}
/* Category Navigation */
#catnav a:link {
	color: #000;
	text-decoration: none;
}
#catnav a:visited {
	text-decoration: none;
}
#catnav a:hover {
	color: #090;
}
#catnav a:active {
	color: #0d0;
}
/* Change #breadcrumb syntax
// move span around separator; prevents necessity of two link tags

#breadcrumb li a {
text-decoration:none;
}
#breadcrumb li a span {
text-decoration:underline;
}
*/

/* Listings >> listing.css
*/
/* PULL ITEMS
*/
.pull div {
	clear: right;
	float: right;
	margin: 0 0 5px 10px;
	width: 20%;
	border: solid 1px #ddd;
}
.pull .title3 {
	margin: 0;
	padding: 5px;
	width: auto;
	border-bottom: solid 1px #ddd;
	background: #f5f5f5;
}
.pull p {
	margin: 5px;
	color: #333;
}
/* Recipe - With Other Content
// v1.0; John Schulz, Ambient Shadow
*/
	.recipe {
		clear: both;
		position: relative;
	/**/
		margin-bottom: 20px;
		padding: 10px 10px 0;
		border: dashed 2px #ddd;
	}
	.recipe h2 {
		margin-top: 0;
	}
	.recipe .ingredients, .recipe .tools {
		float: left;
		margin-right: 10px;
		width: 45%;
	}
	.recipe .directions {
		clear: left;
	}
	.recipe .variations {
		margin-top: 20px;
		padding: 5px 5px 0;
		border-top: dashed 2px #999;
	}