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

/* page margins and background */

body  {
	font: 0.8em Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

/* structure */

.twoColFixLtHdr #container {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	height: 130px;
} 
.twoColFixLtHdr #header {
	background: #FFFFFF;
	padding: 0 0px 0 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-image: url(/images/cn_header.jpg);
	height: 130px;
} 
.twoColFixLtHdr #header p {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 8px 10px 5px 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-align: right; /* this overrides the text-align: center on the body element. */
	width: 720px;
	height: 30px;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 15px;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLtHdr #mainContent {
	text-align: left;
	margin: 0 0 0 230px;
	padding-left: 20px;
	padding-top: 10px;
} 
.twoColFixLtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFFFFF; 
} 
.twoColFixLtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.9em;
	text-align: center; /* this overrides the text-align: center on the body element. */
	line-height: 1.5em;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}


/* link styles */
a:link {
	color: #309;
	text-decoration: none;
}
a:visited {
	color: #666;
	text-decoration: none;
}
a:hover {
	color: #C00;
	text-decoration: none;
}
a:active {
	color: #C00;
	text-decoration: underline;
}

#mainContent a:link {
	color: #096;
	text-decoration: none;
}

#mainContent a:hover {
	color: #C00;
	text-decoration: underline;
}

#mainContent a:active {
	color: #C00;
	text-decoration: underline;
}

#sidebar1 a:link {
	color: #309;
	text-decoration: none;
}

#sidebar1 a:hover {
	color: #C00;
	text-decoration: underline;
}

#sidebar1 a:active {
	color: #C00;
	text-decoration: underline;
}


/* text styles */

/* the next lines of code collapse the margins to make paragraphs closer to headlines and adjusts list spacing */
h1, h2, h3, h4, h5, h6 {margin-bottom: 3px;}
p {margin: 0 0 .8em;}
ul,ol {
	margin: 0 0 1.2em;
}
/* ----------------------- */


h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.6em;
	line-height: 1.2em;
	font-weight: bold;
	color: #006;
}

h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.2em;
	line-height: 1.2em;
	font-weight: bold;
	color: #006;
	letter-spacing: normal;
}

h3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.1em;
	font-weight: bold;
	color: #006;
	text-transform: uppercase;
	letter-spacing: .2em;
}

h4 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	line-height: 1.1em;
	font-weight: bold;
	color: #006;
}

#maincontent p {
	line-height: 1.4em;
}

#maincontent ul {
	line-height: 1.4em;
	list-style-type: circle;
}

#sidebar1 p {
	margin: 0 0 5px 0;
}

.ingredients {
	font-size: .9em;
	line-height: 1.5em;
}

/* image styles */

.imageright {
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 10px;
}



