/* 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;
	}
.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;
	}
/* 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: 11px;
	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. */
}
/* 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: 10px;
  font-weight: bold;
  line-height: 12px;
  text-transform: uppercase;
}
/* 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: capitalize;
}
/* Sets the style for the h6 header. */
h6 {
  color: #36c;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  line-height: 11px;
  text-transform: capitalize;
}

/* 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: justify; /* 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: 37px 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 #contentWrapper #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;
}

	/*  Product Tabs  
	================================================================= */
/* #tabProducts { /* removes defaults from all elements */
/*	
	padding:0;
	padding-left: 10px;
	width: 100%;
	height: 90px;
	float: left;
	}
 #tabProducts ul {
/* background : url(ul.png) repeat-x;  
border-top : 5em solid #f5efff; 
border-bottom : 1px solid #999; */
/*overflow : hidden; }

 #tabProducts li {
	float : left;
	background-image : url(../images/tab-products.gif);
	background-repeat : no-repeat;
	background-position : 0px 0px;
	list-style-type: none;
	height: 90px;
	padding-top: 20px;
	width: 33%;	
}
*/

/*

#outerWrapper #contentWrapper #content #products #tabProducts ul li {
	margin-right:100px;
	}

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

*/

/*

#tabProducts  li h2 { text-align : center; text-transform: uppercase; font-family: Arial, Helvetica, sans-serif; font-size: 24px; line-height: 24px; font-style: normal; }

#tabProducts li a:link, a:visited { text-decoration : none; color : #fff; }

.subTabHead { text-decoration: none; font-size: 20px; font-family: Arial, Helvetica, sans-serif; text-transform: uppercase; color: #e1e1e1; }
	
#tabProducts li a:hover {
	text-decoration: underline;
	color : #fff;
}
.subTabHead a:hover {
	text-decoration: underline;
	color : #fff;
}

*/

/* Overview | Feature | Top Sellers sub Navigation 
 ================================================================= */
#outerWrapper #contentWrapper #content #overview {
	width: 100%;
	float: left;
	padding-left: 0px;
	}
#outerWrapper #contentWrapper #content #overview #feature {
	width: 660px;
	float: left;
	padding-top: 0px;
	padding-right: 10px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666;
	}
#outerWrapper #contentWrapper #content #overview #feature+p {
	float: left;
	vertical-align: top;
	}
#outerWrapper #contentWrapper #content #overview #feature p {
	margin-top: 0px;
	font-size: 14px;
	line-height: 24px;
	color : #5b5b5b;
}

/* Top Sellers sub Navigation 
 ================================================================= */
 #navSubTopSellers {
	width: 250px;
	position: relative;
	float: right;
	background-image:url(../images/bg-nav-sub-organic-agricultural-products-top-sellers.gif);
	background-repeat:repeat-x;
	background-position:left;
	background-position: top;
	margin-right: 0px;
}
	
 #navSubTopSellers h3 {
	text-align:left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:16px;
	color: #fff;
	padding-top: 6px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 12px;
	font-weight: normal;
}
	
 #navSubTopSellers ul {
	list-style: none;
	padding-left: 20px;
	padding-right: 0px;
}
	
 #navSubTopSellers li {
	list-style-image: url(../images/bg-bullet-blue.gif);
	list-style-type: none;
	font-size: 11px;
	text-transform: uppercase;
	text-align: left;
	line-height: 30px;
	padding-left: 0px;
	margin-bottom: 0px;
	letter-spacing: 0em;
	vertical-align: bottom;
	font-family: Arial, Helvetica, sans-serif;
}

#navSubTopSellers li a:link {
	text-decoration : none;
	color : #666;
	font-weight: normal;
}

 #navSubTopSellers li a:visited {
	text-decoration : none;
	color : #666;
}
	
 #navSubTopSellers li a:hover {
	text-decoration: underline;
	color : #06c;
}

/*  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 #tabList { /* removes defaults from all elements */
	margin: 0px;
	padding: 0px;
	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) */
}
#outerWrapper #footer #copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	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; }
