/* 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;
	border: 0;
	outline: 0;
	font-size: 100%;
	padding-top: 0px;
}
img { border: 0;
}

/* SUPPER-SCRIPT | SUB-SCRIPT
==============================================================================*/
.sup {
	font-size: 10px;
	vertical-align: super;
	}
/* floats
==============================================================================*/

.right {
	float: right;
	margin: 1.3em 0 0 2em;
	}
.rightNav {
	float: right;
	margin: 0.6em 0 0 0;
	}
.rightNavSeleced {
	float: right;
	margin: 0.6em 0 0 0;
	}
.rightNavSub {
	float: right;
	margin: 0.3em 0 0 0;
	}
.left {
	float: left;
	display:inline;
	margin-right: 1em;
	margin-bottom: 1em;
	margin-left: 0;
	margin-top: 0;
	}
.center {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	}
	
/* defaults, globals, and miscellaneous
==============================================================================*/

hr {
	display: none;
	}
a {
	text-decoration: none;
	}
.clearHack {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	}
#skipLink {
	display: none;
	}
.red {
	color:#990000;
	}
.green {
	color:#709c2f;
	}

/* 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: #fff;
	background-image: url(../images/bg-body.jpg);
	background-repeat: repeat-x;
	color: #5A5A5A;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	line-height: 14px;
	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. */
}

body.background-nav-only {
	background-image: url(../images/bg-body-content.jpg);
	background-repeat: repeat-x;
}
/* Commonly used to style page titles. */
h1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
}
/* Commonly used to style section titles. */
h2 {
  color: #36c;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: bold;
  line-height: 13px;
  text-transform: uppercase;
}
/* Sets the style for the h3 header. */
h3 {
	color: #36c;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
	text-transform: none;
	margin-bottom: 0px;
}
/* Sets the style for the h4 header. */
h4 {
  color: #36c;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: bold;
  line-height: 11px;
  text-transform: uppercase;
}
/* Sets the style for the h5 header. */
h5 {
  color: #36c;
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: normal;
  line-height: 11px;
  text-transform: none;
}
/* Sets the style for the h6 header. */
h6 {
  color: #36c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  line-height: 11px;
  text-transform: none;
}
/* Global Pseudo Classes
==============================================================================*/
/* Sets the style for unvisited links. */
a,  a:link {
	color: #06c;
	font-weight: normal;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #06c;
	/* font-weight: bold; */
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #06c;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #06c;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #06c;
}
/* 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 {
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 950px;
	line-height: 1.2em;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}

/* HEADER
==============================================================================*/
#outerWrapper #header {
	background-image: url(../images/bg-header.jpg);
	background-position: top center;
	background-repeat: no-repeat;
	font-size: 18px;
	font-weight: bold;
	height: 97px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
	/* Navigation Main Header */
	#outerWrapper #header #navMain {
	float: right;
	padding: 36px 0 0 0;
}
	#outerWrapper #header #navMain li {
	list-style:none;
	display: inline;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: normal;
	color: #000;
	}
	#outerWrapper #header #navMain li a {
	color: #000;
	margin-top: 200px;
	}
	/* Commonly used to style page titles. */
	#outerWrapper #header h1 {
	color: #fff;
	font-family: Helvetica, Geneva, Arial, sans-serif;
	font-size: 1.1em;
	font-weight: bold;
	line-height: 1.2em;
	padding-top: 50px;
	text-align: right;
}
#outerWrapper #header #logo {
	vertical-align: top;
	position: relative;
	z-index: 10;
	top: 18px;
	left: 4px;
	width: 240px;
	height: 60px;
	}
	
/* CONTENT
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 #content {
	margin: 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 10px;
}
	/* Commonly used to style page titles. */
	#outerWrapper #contentWrapper #content h1 {
	color: #36c;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 16px;
	text-transform: uppercase;
	padding-top: 4px;
}

#outerWrapper #contentWrapper {
	background-image: url(../images/bg-content-wrapper.gif);
	background-repeat: repeat-y;
	margin-top: 6px; 
}

/*  Left Column1 | Left Column1nav| Content Right
==============================================================================*/
#outerWrapper #contentWrapper #leftColumn1 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
	height:100%;
	margin-left: 10px;
	padding: 10px;
}
#outerWrapper #contentWrapper #leftColumn1nav {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 200px;
	height:100%;
	margin-left: 10px;
	padding: 10px;
}
#outerWrapper #contentWrapper #leftColumn1nav h3.nav {
	color: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
	text-transform: none;
	margin-bottom: 6px;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: dotted;
	border-bottom-style: dotted;
	border-top-color: #666;
	border-bottom-color: #666;
	padding-top: 2px;
	padding-bottom: 4px;
}
#outerWrapper #contentWrapper #leftColumn1nav h3.nav a {
	color: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
	text-transform: none;
	
}
/*
#outerWrapper #contentWrapper #leftColumn1nav h3.nav a:hover {
	color: #333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.4em;
	text-transform: none;
	text-decoration:none
	
}
*/
#outerWrapper #contentWrapper #leftColumn1nav #navSelected {
	color: #06c; /* Green #709c2f; */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.2em;
	text-transform: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #36c;
	padding-bottom: 4px;	
}
/* 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 #contentRight {
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 230px;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 10px;
}
#outerWrapper #contentWrapper #contentRight h1.borderBottomCatagory {
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #369;
	margin-top: 0px;
	margin-bottom: 20px;
}
#outerWrapper #contentWrapper #contentRight h3.border {
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #369;
	padding-top: 4px;
}
#outerWrapper #contentWrapper #contentRight p.borderBottom {
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #369;
	margin-top: 30px;
	padding-bottom: 10px;
}
#outerWrapper #contentWrapper #contentRight p.productListTitle {
	color: #709c2f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.0em;
	font-weight: bold;
	line-height: 1.2em;
}
#outerWrapper #contentWrapper #contentRight #formRequestInfo {
	float: left;
	width: 100%;
}
#outerWrapper #contentWrapper #contentRight #formRequestInfo h3 {
	text-align: left;
	border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #369;
	padding: 4px 0 6px 0;
}
#outerWrapper #contentWrapper #contentRight #formRequestInfo p {
	float: left;
	margin-left: 35px;
	color: #709c2f;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.0em;
	line-height: 1.2em;
	}
#outerWrapper #contentWrapper #contentRight #formRequestInfo p.btnSubmit {
	float: right;
	margin-right: 40px;
	clear: both;
	}
#outerWrapper #contentWrapper #contentRight #formRequestInfo .itemCheckbox {
	float: left;
	font-size: 0.8em;
	text-align: right;
	width: 200px;
	/* height: 20px; */
	margin: 4px 10px 4px 10px;
	padding: 0px;	/* border: solid 1px #aeaeae; */
	}	
	#outerWrapper #contentWrapper #contentRight #formRequestInfo .itemCheckbox p {
	/*font-family:Verdana, Arial, Helvetica, sans-serif; 
	font-size: 0.9em; */
	line-height: 1.2em;
	text-transform: none;
	text-align:right;
	color: #5A5A5A;
	margin: 6px 0 0 0;
	}
/*
#outerWrapper #contentWrapper #contentRight #formRequestInfo #checkbox p {
	float: left;
	margin-left: 35px;
	text-align: right;
	color: #709c2f;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1.0em;
	line-height: 1.2em;
	}
	*/
/* Content right - item contacts
==============================================================================*/

	#outerWrapper #contentWrapper #contentRight #distributors {
	width: 680px;
	}	
	#outerWrapper #contentWrapper #contentRight #distributors .items {
	float: left;
	width: 98%;
	margin: 10px 0;
	padding: 10px;
	border: solid 1px #06c;
	clear: none;
	}
	#outerWrapper #contentWrapper #contentRight #distributors h2.items  {
	float: left;
	width: 95%;
	margin: 0 0 0 10px;
	/*font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #06c;
	 border-bottom: solid 1px #06c; */
	}
	/* Sets the style for the P SPAN - Back to Top */
	#outerWrapper #contentWrapper #contentRight #distributors p span {
  	color: #36c;
  	font-family: Verdana, Arial, Helvetica, sans-serif;
  	font-size: 11px;
  	text-transform: none;
  	margin-top: 4px;
  	float: right;
	}
	#outerWrapper #contentWrapper #contentRight #distributors .item {
	float: left;
	width: 200px;
	height: 130px;
	margin: 10px 10px 0 0px;
	padding: 5px 5px 5px 5px;
	border: solid 1px #aeaeae;
	}
	#outerWrapper #contentWrapper #contentRight #distributors .item:hover {
	background-color:#ececec;	 
	/* padding: 1px; */
	/* border-bottom:solid 1px #999; */
	}	
	#outerWrapper #contentWrapper #contentRight #distributors .item h3 {
	/*font-family:Verdana, Arial, Helvetica, sans-serif; */
	font-size: 1.0em;
	line-height: 1.2em;
	text-transform: none;
	text-align:center;
	color: #000;
	margin: 0;
	}
	#outerWrapper #contentWrapper #contentRight #distributors .item p {
	/*font-family:Verdana, Arial, Helvetica, sans-serif; 
	font-size: 0.9em; */
	line-height: 1.2em;
	text-transform: none;
	text-align:left;
	color: #5A5A5A;
	margin: 6px 0 0 0;
	}
	#outerWrapper #contentWrapper #contentRight #distributors p.contactdist  {
	color: #000000;
	margin:6px 0 0 10px;
		}
/* Main Message - content right
==============================================================================*/
.messageMain {
	/* background-color:#e4ecec;  #DEE5D7 */
	padding: 10px;
	/* border-bottom-width: thin;
	border-bottom-style: solid;
	border-bottom-color: #369;
	border-right-width: thin;
	border-left-width: thin;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #369;
	border-left-color: #369; */
}

/* Comments and Key Points */

	.note {
		color: #666;
		font-style: normal;
	}
	
	.remark {
		color: #666;
	}
	
	.sidenote {
		border-color: #666;
	}
	.productList {
	padding-top: 0px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;		
	/* margin-bottom: 1em; */
	/* background-color: #eed; */
	}	
	.productList h1 {
	margin-top: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2em;
	color: #5a5a5a;
	border-bottom: solid #999 2px;
	padding: 6px 0 0 0;
	}
	.productList h1#organic0 {
	background-image: url(../images/products-organic-bg-h1.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	padding: 6px 0 0 0;
	}
	.productList h1#organic1 {
	background-image: url(../images/products-organic-bg-h1-1.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	padding: 6px 0 0 0;
	}
	.productList h1#organic2 {
	background-image: url(../images/products-organic-bg-h1-2.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	padding: 6px 0 0 0;
	}
	.productList h1#organic3 {
	background-image: url(../images/products-organic-bg-h1-3.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	padding: 6px 0 0 0;
	}
	.productList h1#organic4 {
	background-image: url(../images/products-organic-bg-h1-4.jpg);
	background-repeat: no-repeat;
	background-position: right top;
	padding: 6px 0 0 0;
	}
	.productList h2 {
		border-top: 1px solid #ccc;
		margin-top: 6px;
		padding-bottom: 0px;
		color: #06c; /* #4C5C5C */
	}
	.productList h3 {
	margin-top: 6px;
	padding-bottom: 4px;
	color: #4C5C5C;
	font-size: 0.8em;
	}
	
	#outerWrapper #contentWrapper #contentRight #productList p.productListTitle {
	color: #709c2f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
}
	/* Sets the style for links and visited links */
	.TabbedPanelsContentGroup li a:link, a:visited { text-decoration : none; color : #06c; }
	/* Sets the style for links on mouseover. */
	.TabbedPanelsContentGroup li a:hover { text-decoration : underline; color : #06c; }
	/* 
	.productList h2, .productList h3, .productList h4, .productList h5, .productList p {
	border: none;
	margin-top: 0px;
	color: #4C5C5C;
	} 
	
	.clearHackHrule {
	display: block;
	margin: 20px 0px;
	visibility: visible;
	clear: both;
	height: 0px;
	width: 100%;
	border-bottom: solid #ccc 1px;
	}
	*/
	div.productList div.pdfBox {
	float: right;
	width: 40%;
	background-color:#D4E4C3;
	padding:4px;
	border: 1px solid #999; /* #369 */
	margin-bottom: 10px;
	}
	div.productList div.pdfBox ul {
	clear: left;
	}
	div.productListItem { float: left; width: 100%; 
	}
	
/* float - divListBoxLeft NoWrap
==============================================================================*/	
#outerWrapper #contentWrapper #contentRight .floatbox{
float: left;
width: 129px;
}

* html #outerWrapper #contentWrapper #contentRight p.linkList{ /* IE 3px jog hack */ /* KRAIG THIS MAY HAVE TO GO */
height: 1%;
}

#outerWrapper #contentWrapper #contentRight  p.linkList {
margin-top: 0;
margin-left: 139px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper #contentRight .clearFloat {
  clear: left; 
  display: block;
}

/* float - divProductBoxRight NoWrap
==============================================================================*/	
#outerWrapper #contentWrapper #contentRight .floatboxProductRight{
	float: right;
	width: 154px;
	margin-left: 10px;
}

* html #outerWrapper #contentWrapper #contentRight p.linkListRight{ /* IE 3px jog hack */ /* KRAIG THIS MAY HAVE TO GO */
height: 1%;
}

#outerWrapper #contentWrapper #contentRight  p.linkListRight {
	margin-top: 0;
	margin-left: 0px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper #contentRight .clearProductFloatRight {
  clear: right; 
  display: block;
}

/*  Contact Info Tabs  
==============================================================================*/
#outerWrapper #contentWrapper #content #tabContactInfo { /* removes defaults from all elements */
	margin: 0px;
	padding: 0px;
	border-top-width: 4px;
	border-top-style: solid;
	border-top-color: #39c;
	float: none;
	}

#outerWrapper #contentWrapper #content #tabContactInfo li { display:inline; position:relative; }

/* Footer */
#outerWrapper #footer {
	background-image: url(../images/bg-footer.gif);
	background-position: center bottom;
	background-repeat: no-repeat;
	border-top-style: none;
	height: 80px;
	margin-top: 0px;
	padding: 0px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	clear: both;
}
#outerWrapper #footer #copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #999;
	padding-top: 18px;
	width: 800px;
	font-weight: normal;
}
.horizon {
	height: 20px;
	width: 110px;
	position: relative;
	clear: both;
	float: right;
	top: -18px;
}
#outerWrapper #footer #navFooter {
	font-size: 10px;
	text-transform: uppercase;
	text-align: center;
	width: 600px;
	margin-left: 150px;
	padding-top: 20px;
}
#navFooter .navFooterLinks li {
	list-style:none;
	display: inline;
	}
#navFooter .navFooterLinks li a:link, a:visited { text-decoration : none; color : #06c; }
#navFooter .navFooterLinks li a:hover { text-decoration : underline; color : #06c; }

/* ============================================================================================= */

/* Map */

#domestic_box {
	overflow: scroll;
	height: 200px;
	width: 100%;
	margin-top: 6px;
	padding-top: 6px;
}

