/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
  background-color: #F2EFE9;
  color: #2d2e2e;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
p {
  margin: 3px 0 10px 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
}
/* Commonly used to style page titles. */
h1 {
  color: #FDA200;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 14px;
  margin: 0 0 15px 0; /* Override browser defaults to provide consistent spacing across browsers. */
  padding: 10px 7px 10px 7px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-transform: uppercase;
}
/* Commonly used to style section titles. */
h2 {
  color: #FDA200;
  font-size: 16px;
  font-weight: bold;
  line-height: 14px;
}
/* Sets the style for the h3 header. */
h3 {
	color: #562f00;
	font-size: 12px;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #fda200;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #fda200;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #fda200;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #fda200;
  font-weight: bold;
  text-decoration: none;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 850px;
}
#outerWrapper #header_table img { 
display: block; 
}
#outerWrapper #header {
  display: block;
  background-color: #E28C05;
  margin:0 0 0 0;
  padding:0 0 0 0;
  border:0;
}
#outerWrapper #topNavigation {
  background-color: #E28C05;
  height: 79px;
}
#outerWrapper #contentWrapper {
  background-color: #FFFFFF;
  border-left-color: #e2e2e2;
  border-left-style: dotted;
  border-right-color: #e2e2e2;
  border-right-style: dotted;
  overflow: hidden;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-bottom: 25px;
	padding-left: 25px;
	padding-right: 15px;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #contentHome {
	margin: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-top:  25px;
	padding-bottom: 25px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #contentDownloads {
	margin: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-bottom: 25px;
	padding-left: 45px;
    padding-right: 10px;
}
#outerWrapper #footer_img {
  background-color: #E28C05;
  margin:0 0 0 0;
  padding:0 0 0 0;
  border:0;
}
#outerWrapper #footer {
  background-color: #E28C05;
  border-top: solid 1px #666; /* Sets the top border properties for an element using shorthand notation */
  color: #FFFFFF;
  padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
}
 #footer .right  {
	float: right;
	padding-right:15px;
	padding-bottom: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
	font-weight: bold;
}

#footer a, #footer a:visited {
	color:#000000;
	text-decoration:none;
}
#footer a:hover {
	color:#000000;
	text-decoration:underline;
}
div.contentHeaderContainer {
  overflow: hidden;
  height: 1%;
}
div.imgBoxLeft {
	margin: 0px 0px 0px 0px;
	float: left;
	text-align: left;
}
div.imgBoxLeft img {
  padding: 5px;
}
div.imgBoxLeft {
	margin: 0px 0px 0px 0px;
	float: left;
	text-align: left;
}
div.imgBoxLeft img {
  padding: 5px;
}
#outerWrapper #contentWrapper #contentHome .productDuck a {
	color: #FDA200;
	font-size: 16px;
}
#outerWrapper #contentWrapper #contentHome .productBeef a {
	color: #4A5C28;
	font-size: 16px;
}
#outerWrapper #contentWrapper #contentHome .productTrailmix a {
	color: #aa883e;
	font-size: 16px;
}
#outerWrapper #contentWrapper #contentHome .productChicken a {
	font-size: 16px;
	color: #D7212E;
}
#outerWrapper #contentWrapper #contentHome .productCheddar a {
	font-size: 16px;
	color: #163CC3;
}
#outerWrapper #contentWrapper #contentHome .productWhitefish a {
	color: #6B106D;
	font-size: 16px;
}

#outerWrapper #contentWrapper #content a {
	color: #fda200;
}
#outerWrapper #contentWrapper #contentDownloads a {
	color: #fda200;
}
.productDuck {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #FDA200;
	line-height: 22px;
}
.productBeef {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #3F5212;
	line-height: 22px;
}
.productTrailmix {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #aa883e;
	line-height: 16px;
}
.productChicken {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #DE2535;
	line-height: 16px;
}
.productCheddar {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #1439BB;
	line-height: 16px;
}
.productWhitefish {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #6B106D;
	line-height: 22px;
}
div.contentHeaderContainer {
	overflow: hidden;
	height: 1%;
}
div.imgBox {
	margin-top: 10px;
	margin-bottom: 20px;
	font-size: 0px;
}

div.imgBox img {
  padding: 1px;
}

div.imgBoxLeft {
	margin: 0px 65px 20px 0px;
	float: left;
	text-align:center;
}
div.imgBoxLeft img {
	padding: 4px;
	border: 1px double #C2C2C0;
}
.aboutBoxLeft a, .aboutBoxLeft a:hover, .aboutBoxLeft a:active, .aboutBoxLeft a:visited {
	text-decoration:none;
}
div.aboutBoxLeft {
	margin: 0px 20px 0px 0px;
	float: left;
	text-align:center;
}
div.aboutBoxLeft img {
	padding: 4px;
}
#outerWrapper #contentWrapper #content .contentHeaderContainer .textFloat {
	padding-top: 45px;
}
.testimonialSig {
	font-family: Mistral;
	font-size: 20px;
	font-weight: bold;
	color: #FDA200;
}
#outerWrapper #contentWrapper #content img {
	padding-bottom: 15px;
}
#outerWrapper #contentWrapper #content #topNav {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
#outerWrapper #contentWrapper #content .liverpageHeader img {
	padding-left: 100px;
	padding-bottom: 15px;
}
#outerWrapper #contentWrapper #contentHome #lines {
	border-top-width: 2px;
	border-top-style: dashed;
	border-top-color: #6d4300;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 725px;
}
#outerWrapper #contentWrapper #content #lines {
	border-top-width: 2px;
	border-top-style: dashed;
	border-top-color: #520E54;
	padding-top: 15px;
	padding-bottom: 15px;
	width: 725px;
}
#outerWrapper #contentWrapper #contentDownloads img {
	padding-bottom: 25px;
}
#outerWrapper #contentWrapper #contentDownloads #topNav {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
.orderitems .ulternate {



border-top:1px solid #84510c;



}
.orderitems {
	border-right:1px solid #84510c;
	border-left:1px solid #84510c;
	border-bottom:1px solid #84510c;
	border-collapse:collapse;
	margin:10px auto;
	width:567px;
}
.orderitems th {
	background:#a88300 none repeat scroll 0 0;
	color:#ffffff;
	font-weight:bold;
	height:28px;
	padding-left:12px;
	text-align:left;
	}
table.orderitems td.quantity input {
	color:#323232;
	font-size:12px;
	height:14px;
	padding:1px;
	width:43px;
}	
.even span {
	color:#fda200;
	font-size:10px;
	font-style:italic;
}
.orderconfirm {
	border-collapse:collapse;
	border-color:#43848C -moz-use-text-color #72AFB6;
	border-style:solid none;
	border-width:2px 0 1px;
	margin-bottom:1em;
	margin-top:0;
	width:auto;
}
.orderconfirm tr, .orderconfirm-indent tr, .orderconfirm-indent-no_lines tr {
	border-color:#72AFB6;
	border-style:solid;
	border-width:1px 0;
}
.orderconfirm th, .orderconfirm-no_lines th, .orderconfirm-indent th, .orderconfirm-indent-no_lines th {
	border-color:-moz-use-text-color -moz-use-text-color #72AFB6;
	border-style:none none solid;
	border-width:0 0 1px;
	margin:0;
	padding:8px 10px 7px;
	vertical-align:top;
	width:auto;
}
.orderconfirm th, .orderconfirm-no_lines th, .orderconfirm-indent th, .orderconfirm-indent-no_lines th {
	background-color:#84510c;
	color:#FFF;
	font-size:1.2em;
	font-variant:normal;
	font-weight:bold;
	vertical-align:top;
}
caption, th {
	text-align:left;
}
.orderconfirm td, .orderconfirm-no_lines td, .orderconfirm-indent td, .orderconfirm-indent-no_lines td {
	border-color:transparent transparent #84510c;
	border-style:solid;
	border-width:0 0 1px;
	margin:0;
	padding:8px 10px 7px;
	vertical-align:middle;
	width:auto;
}
table.infoform {
	margin-bottom: 2em;
}
