/*****************************
 HTML Reset
*****************************/
* {
	background: transparent;
	border: 0px;
	margin: 0px;
	padding: 0px;
	font-family: inherit;
}
/* Focus Reset */
:focus {
	outline: 0;
}
/*****************************
 Selection
*****************************/
::selection {
	background: rgba(0, 0, 0, 0.5);
	color: #ffffff;
}
::-moz-selection {
	background: rgba(0, 0, 0, 0.5);
	color: #ffffff;
}
::-webkit-selection {
	background: rgba(0, 0, 0, 0.5);
	color: #ffffff;
}

/*****************************
 Body
*****************************/
body {
	background: #eeeeee;
	font-family: 'Source Sans Pro', Helvetica, sans-serif;
	font-size: 13px;
	line-height: 175%;
	color: #777777;
	border-top: 5px solid #6ABD39;
}
/*****************************
 Hyperlinks
*****************************/
a {
	color: #000000;
	text-decoration: none;
	cursor: pointer;
}
a:hover,
a:active {
	color: #888888;
	text-decoration: none;
}
a img {
	border: 0px;
}
/*****************************
 Paragraph and Headings
*****************************/
p {
	margin: 0px 0px 15px 0px;
}
h1 {
	font-size: 28px;
	font-family: 'Source Sans Pro', 'arial', helvetica, sans-serif;
	font-weight: 400;
	color: #6ABD39;
	line-height: 130%;
	border-bottom: 1px solid #ccc;
	padding-bottom: 5px;
	margin-bottom: 10px;
}
h2 {
	font-size: 24px;
	font-family: 'Source Sans Pro', 'arial', helvetica, sans-serif;
	font-weight: 400 italic;
	color: #888;
	margin: 0px 0px 15px 0px;
	line-height: 130%;
}
h3 {
	font-size: 19px;
	font-family: 'Source Sans Pro','arial', helvetica, sans-serif;
	font-weight: 300;
	color: #444444;
	margin: 0px 0px 15px 0px;
	line-height: 175%;
}
h4 {
	font-size: 16px;
	font-family: 'Source Sans Pro', helvetica, sans-serif;
	font-weight: 700;
	color: #666666;
	margin: 0px 0px 15px 0px;
	line-height: 175%;
}
h5 {
	font-size: 16px;
	font-family: 'Source Sans Pro', helvetica, sans-serif;
	font-weight: normal;
	color: #ffffff;
	margin: 0px 0px 15px 0px;
	line-height: 100%;
	padding: 5px;
	background: #222222;
}
h6 {
	font-size: 16px;
	font-family: 'Source Sans Pro', helvetica, sans-serif;
	font-weight: normal;
	color: #ffffff;
	margin: 0px 0px 15px 0px;
	line-height: 100%;
	padding: 5px;
	background: #444444;
}

img {
	margin-bottom:10px;
	border:15px solid #fff;
}
.productlabel img {
	border:0px;
}
/*****************************
 List Styling
*****************************/
/* Unordered Lists */
#wrapper ul{
	list-style-type: disc;
	list-style-position: inside;
	margin: 0px 0px 15px 15px;
	text-indent: -12px;
}
#wrapper ul li {
	margin-bottom: 3px;
}
#wrapper ul ul{
	list-style-type: circle;
	list-style-position: inside;
	margin: 0px 0px 15px 15px;
	text-indent: -12px;
}
/* Ordered Lists */
#wrapper ol {
	list-style-type: decimal;
	list-style-position: outside;
	margin: 0px 0px 15px 16px;
}
#wrapper ol li {
	margin: 0px 0px 3px 0px;
}
#wrapper ol ol{
	list-style-type: lower-alpha;
	list-style-position: outside;
	margin: 0px 0px 15px 16px;
}
/* Definition Lists */
#wrapper dl {
	float: left;
	width: 100%;
	border-bottom: 1px solid #dddddd;
	display: inline-block;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}
#wrapper dl dt {
	clear: left;
	float: left;
	width: 18%;
	margin: 0px;
	padding: 2%;
	border-top: 1px solid #dddddd;
	font-weight: bold;
	color: #333333;
}
#wrapper dl dd {
	float: left;
	width: 74%;
	margin: 0px;
	padding: 2%;
	border-top: 1px solid #dddddd;
}
/*****************************
 Form Elements
*****************************/
input[type="text"],
textarea,
select {
	margin: 0px;
	background: #ffffff;
	border: 1px solid #dddddd;
	width: 168px;
	padding: 10px;
	font-family: 'arial', helvetica, sans-serif;
	font-size: 12px;
}
label {
	color: #FFF;
	font-family: 'arial', helvetica, sans-serif;
}
/*****************************
 Contact Form
*****************************/
.greensidebar {
	width: 250px;
	line-height: 100%;
	display: inline-block;
	padding: 25px 20px;
	background: #95d933; /* Old browsers */
	background: -moz-linear-gradient(top,  #95d933 0%, #6ABD39 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#95d933), color-stop(100%,#6ABD39)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #95d933 0%,#6ABD39 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #95d933 0%,#6ABD39 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #95d933 0%,#6ABD39 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #95d933 0%,#6ABD39 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#95d933', endColorstr='#6ABD39',GradientType=0 ); /* IE6-9 */
	color: #ffffff;
	line-height:125%;
	
}
.greensidebar h2 {
	color: #FFF;
	font-size: 24px;
}
.greensidebar ul {
	color:#fff;
	font-size:14px;	
}

.greensidebar li {
	margin:10px 0px;
	line-height:130%;
}
/*****************************
 Tables 
*****************************/
table {
	margin: 0px 0px 15px 0px;
	padding: 0px;
	border-collapse:collapse;
}
tr {
	margin: 0px;
	padding: 0px;
}

th {
	margin: 0px;
	padding: 5px;
	color: #6CBF39;
	font-weight:normal;
	border-bottom: 2px solid #6CBF39;
}
td {
	margin: 0px;
	padding: 2px;
	vertical-align:top;
}

.nutritionalinfo td {
    border-bottom: 1px solid #6CBF39;
    padding: 6px 8px;
	margin:0;
}

.nutritionalinfo tr:hover {
    font-weight: bold;
}

/*****************************
 Other HTML elements
*****************************/
/* Bold */
strong,
b {
	font-weight: bold;
}
/* Italic */
em,
i {
	font-style: italic;
}
/* Horizontal Rule */
hr {
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-bottom: 1px solid #dddddd;
	background: none;
	height: 0px;
	margin: 0px 0px 15px 0px;
	padding: 0px;
}
/*****************************
 Website Structure
*****************************/
.container {
	background: url(../images/container_BG.jpg) repeat-x;
}
/*****************************
 Header
*****************************/
#header {
	width: 980px;
	margin: 0px auto;
	padding: 0px;
	background: url(../images/logo.jpg) left 18px no-repeat;
	position: relative;
	z-index: 666;
}
/* Logo */
.logo {
	margin: 0px;
	text-align: left;
}
.logo img {
	height: 180px;
	width: 400px;
	text-align: left;
}
.logo a {
	display: inline-block;
}
a.mobile-logo {
	display: none;
}
/*****************************
 Call To Action
*****************************/
.call-to-action {
	position: absolute;
	width: auto;
	margin: 0px;
	padding: 0px;
	right: 0px;
	top: 0px;
	text-align: left;
}
.call-to-action div {
	margin: 0px;
}
.call-to-action div > span {
	padding: 0px;
	margin: 0px 10px 0px 0px;
	background: none;
	color: #ddd;
	font-weight: bold;
	font-family: 'Trebuchet', helvetica, sans-serif;
	font-style: italic;
}
.slogan {
	position: absolute;
	right: 0px;
	top: 35px;
	font-size: 24px;
	line-height: 100%;
	font-weight: normal;
	margin: 30px 0px 15px 0px;
	font-family: 'MyriadProItalic', 'arial', helvetica, sans-serif;
	color: #fff;
	text-shadow: 0px 1px 3px #222;
    filter: dropshadow(color=#222, offx=0, offy=1);
} 
.call-to-action .contact-phone {
	font-size: 21px;
	line-height: 100%;
	font-weight: normal;
	margin: 0px 0px 5px 0px;
	padding: 5px 15px 10px 35px;
	background: #6ABD39 url(../images/social/phone-dark.png) 15px 5px no-repeat;
	font-family: 'MyriadProItalic', 'arial', helvetica, sans-serif;
	color: #FFF;
}
/*****************************
 Navigation Bar
*****************************/
#menu {
	background: none;
	width: 100%;
}
/* Level 1 */
#menu #top {
	background: #fff;
	line-height: 100%;
	margin: 0px auto;
	padding: 0px;
	width: 650px;
	z-index: 99;
	display: inline-block;
	position: absolute;
	right: 0px;
	top: 113px;
	text-align: center;
}
#menu #top li {
	/*float: left;*/
	display: inline-block;
	list-style-image: none;
	list-style-position: outside;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	position: relative;
	z-index: 99;
	zoom: 1;
	*display: inline;
	_height: 100%;
}
/* Top Level Link Styling */
#menu #top li a {
	color: #444;
	display: block;
	font-weight: normal;
	margin: 0px;
	padding: 17px 13px;
	font-size: 15px;
	line-height: 100%;
	font-family: 'Source Sans Pro','arial', helvetica, sans-serif;
}
#menu #top li a:hover,
#menu #top li a:active,
#menu #top li.current a,
#menu #top li:hover > a {
	background: #6ABD39;
	color: #FFFFFF;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
/* Level 2 */
#menu #top li:hover > ul {
	display: block;
}
#menu #top ul {
	background: #fff;
	display: none;
	left: 0;
	margin: 0px;
	padding: 0px;
	position: absolute;
	top: 49px;
	width: 185px;
	z-index: 99;
	text-align: left;
}
#menu #top ul li {
	float: none;
	margin: 0px;
	padding: 0px;
	z-index: 99;
	display: block;
}
/* Second Level Link Styling and Onwards */
#menu #top li > ul li a {
	background: none;
	color: #777777;
	font-weight: normal;
	padding: 9px 9px 9px 9px;
	font-size: 14px;
	line-height: 100%;
}
#menu #top li > ul li a:hover {
	background: #6ABD39 !important;
	color: #FFFFFF !important;
}
/* Level 3 */
#menu #top ul ul {
	left: 181px;
	top: 0px;
	z-index: 99;
}
/* Menu Clearfloat */
#menu #top:after {
	content: "."; 
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
#menu #top {
	display: block;
}
* html #menu #top {
	height: 1%;
}
*+html #menu #top {
	height: 1%;
}
/*****************************
 Site Content
*****************************/
#wrapper {
	width: 100%;
	margin: 0px;
	padding: 0px;
	background: #f7f7f7 url(../images/body_BG.png) repeat;;
}
.content-middle {
	width: 1000px;
	margin: 0 auto;
	padding: 0px;
}
/* Breadcrumbs */
.breadcrumb {
	padding: 0px 0px 15px 0px;
	margin: 0px;
	background: none;
	color: #bbbbbb;
	font-size: 11px;
	line-height: 100%;
}
.breadcrumb a {
	color: #bbbbbb;
}
.breadcrumb a:hover,
.breadcrumb a:active {
	color: #333333;
}
/* Page Headings */
.heading {
	width: 960px;
	background: none;
	margin: 30px 20px 10px 20px;
	padding: 0px;
	display: inline-block;
}
/* Sidebar */
.sidebar {
	width: 290px;
	background: none;
	margin: 0px 20px 30px 0px;
	padding: 0px;
	float: right;
}
/* Widgets */
.sidebar .widget {
	display: block;
}
.sidebar .widget + .widget {
	margin: 0px 0px;
}
.widget-title {
	font-size: 16px;
	font-family: 'Source Sans Pro', sans-serif;
	font-weight: bold;
	color: #444444;
	margin: 0px 0px 15px 0px;
	line-height: 175%;
}
/* Main Pages */
.content {
	width: 960px;
	background: none;
	margin: 0px 20px 30px 20px;
	padding: 0px;
	min-height: 400px;
}
/* Content With Sidebar */
.content-left {
	width: 650px;
	background: none;
	margin: 0px 0px 30px 20px;
	padding: 0px;
	float: left;
}
.content_bottom {
  padding: 10px 30px;
}
/*****************************
 Photo Gallery
*****************************/
.gallery-container {

}
.gallery-text {
	width: 100%;
	padding: 0px;
	margin: 0px;
}
.overview_thumbnail_all {
	float: left;
	padding: 0 15px 0 0;
}
/*****************************
 404 Page
*****************************/
/* Google Search */
#goog-fixurl {
	width: 100%;
	display: inline-block;
	margin: 30px 0px 0px 0px;
	padding: 0px;
}
#goog-wm {
	width: 100%
}
#goog-wm .content {
	margin: 0px;
	padding: 0px;
	width: 100%;
}
#goog-wm .content h3.other-things {
	display: none;
}
#goog-wm .content ul {
	list-style: none;
	text-indent: 0px;
	margin: 0px;
	padding: 0px;
}
#goog-wm .content li.search-goog {
	list-style: none;
	text-indent: 0px;
	margin: 0px;
	padding: 0px;
	font-size: 16px;
	color: #444444;
	margin: 0px;
	line-height: 100%;
	text-align: center;
}
#goog-wm .content li.search-goog form {
	display: block;
}
#goog-wm .content li.search-goog input {
	margin: 15px auto 0px auto;
	display: block;
	text-align: center;
	font-family: 'Source Sans Pro', Helvetica, Sans-Serif;
}
#goog-wm .content li.search-goog input#goog-wm-qt {
	border: 1px solid #c6c6c6;
	padding: 9px;
	width: 552px;
	font-size: 14px;
	line-height: 14px;
}
#goog-wm .content li.search-goog input#goog-wm-qt:active,
#goog-wm .content li.search-goog input#goog-wm-qt:focus {
	border: 1px solid #4D90FE;
	-webkit-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
	box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
}
#goog-wm .content li.search-goog input#goog-wm-sb {
	width: auto;
	padding: 10px;
	font-size: 11px;
	line-height: 11px;
	border: 1px solid #c6c6c6;
	color: #444444;
	background: #f5f5f5; /* Old browsers */
	background: -moz-linear-gradient(top,  #f5f5f5 0%, #f1f1f1 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#f1f1f1)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f5f5f5 0%,#f1f1f1 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f5f5f5 0%,#f1f1f1 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f5f5f5 0%,#f1f1f1 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f5f5f5 0%,#f1f1f1 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#f1f1f1',GradientType=0 ); /* IE6-9 */
	cursor: pointer;
	font-weight: bold;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}
#goog-wm .content li.search-goog input#goog-wm-sb:hover,
#goog-wm .content li.search-goog input#goog-wm-sb:active {
	color: #222222;
	background: #f8f8f8; /* Old browsers */
	background: -moz-linear-gradient(top,  #f8f8f8 0%, #f1f1f1 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f8f8f8), color-stop(100%,#f1f1f1)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f8f8f8 0%,#f1f1f1 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f8f8f8 0%,#f1f1f1 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f8f8f8 0%,#f1f1f1 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f8f8f8 0%,#f1f1f1 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f8f8f8', endColorstr='#f1f1f1',GradientType=0 ); /* IE6-9 */
	-webkit-box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}
/*****************************
 Footer
*****************************/
#footer-contain {
	width: 100%;
	background: none;
	display: inline-block;
	background: #999;
	border-top: 1px solid #888;
}
#footer {
	margin: 0px auto;
	width: 960px;
	font-size: 10px;
	/*background: #111111;*/
	color: #fff;
	padding: 15px 20px 5px;
	vertical-align: top;
}
#footer .footer-sitemap {
	width: 100%;
	display: inline-block;
	margin-right: 20px;
	vertical-align: top;
}
#footer ul {
	width: 100%;
	margin: 0px;
	padding: 0px;
	list-style: none;
	text-align: left;
	text-indent:0px;
}
.copyright-contain {
	width: 100%;
	background: #6ABD39;
}
.footer-copyright {
	margin: 0px auto;
	width: 960px;
	font-size: 10px;
	line-height: 10px;
	background: transparent;
	color: #ffffff;
	padding: 10px 20px;
	text-align: right;
}
.footer-copyright span.left {
	float: left;
	/*display: none;*/
}
/* Footer Links */
#footer a {
	color: #ffffff;
}
#footer a:hover,
#footer a:active {
	text-decoration: underline;
}
.footer-copyright a:hover,
.footer-copyright a:active {
	text-decoration: underline;
}
/*****************************
 Footer Sitemap
*****************************/

/* Level 1 */
#footer ul.bottom li {
	width: 85px;
	margin:0px;
	padding: 0px 20px 0px 0px;
	list-style: none;
	display: inline-block;
	text-align: left;
	font-size: 12px;
	line-height: 12px;
	font-weight: bold;
}

/*****************************
 Custom Footer
*****************************/
.footer-custom {
	margin: 0px 10px;
}
.footer-custom div {
	vertical-align: top;
}
/* IE 7 Hack */
.footer-custom > div {
	zoom: 1;
	*display: inline;
	_height: 100%;
}
/* About */
.footer-about {
	width: 45%;
	display: inline-block;
	*zoom: 1;
  *display: inline;
}
/* Sitemap */
.footer-custom .mini_sitemap {
	width: 23%;
	display: inline-block;
	margin: 0% 4%;
	*zoom: 1;
  *display: inline;
}
.footer-custom .mini_sitemap ul.top ul {
	display: none; /* Hide all level 2 footer nav items */
}
.footer-custom .mini_sitemap ul.top li {
	width: 100%;
	margin: 7px 0px;
	padding: 0px;
	display: inline-block;
	font-size: 11px;
	line-height: 11px;
	font-weight: normal;
  *line-height:14px;
  *margin-bottom:0;
	*zoom: 1;
  *display: inline;
}
.footer-custom .mini_sitemap ul.top > li > a {
	margin: 0px;
	padding: 0px;
	border-bottom: 0px;
}


/*****************************
 Float Properties
*****************************/
.clearfloat:after {
	content: "."; 
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfloat {
	display: block;
}
/* Hides from IE-mac */
* html .clearfloat {
	height: 1%;
}
*+html .clearfloat {
	height: 1%;
}


/*****************************
 Form Elements
*****************************/
input[type="text"],
textarea,
select {
	margin: 0px;
	background: #ffffff;
	border: 1px solid #dddddd;
	width: 168px;
	padding: 10px;
	font-family: 'arial', helvetica, sans-serif;
	font-size: 12px;
}
label {
	color: #FFF;
	font-family: 'arial', helvetica, sans-serif;
}

.required {
	color: #ff0000;
	font-size: 12px;
}
.form-element {
	width: 100%;
	margin: 0px 0px 10px 0px;
	display:inline-block;
}
.form-element:after {
	content: "."; 
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/* Contact Form Elements */
.form-element label {
	float: left;
	margin: 11px 0px 0px 0px;
}
.form-element input[type="text"] {
	float: right;
	color: #888;
}
.form-element select {
	color: #888;
}
.form-element textarea {
	width: 100%;
	line-height: 150%;
	height: 110px;
	max-width:100%;
  max-width: 227px\9; /* IE FIX */
	-moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  .box-sizing: border-box;
}
/* Submit Button */
.form-element input[type="submit"] {
	cursor:pointer;
	width: 100%;
	color: #FFF;
	font-size: 18px;
	padding: 10px;
	font-family: 'MyriadProSemiBold', 'arial', helvetica, sans-serif;
	border: 0px;
	background: #ff9600; /* Old browsers */
	background: -moz-linear-gradient(top,  #ff9600 0%, #fe9400 40%, #d16301 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff9600), color-stop(40%,#fe9400), color-stop(100%,#d16301)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ff9600 0%,#fe9400 40%,#d16301 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ff9600 0%,#fe9400 40%,#d16301 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ff9600 0%,#fe9400 40%,#d16301 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ff9600 0%,#fe9400 40%,#d16301 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9600', endColorstr='#d16301',GradientType=0 ); /* IE6-9 */
}
.form-element input[type="submit"]:hover {
	background: #000000;
	color: #ffffff;
}
/* Submit Elements */
.confirm {
	color: #8ED334;
	font-size: 12px;
	background: #EAF7D9;
	border: 1px solid #BBDF8D;
	padding: 10px;
	display: block;
	clear: both;
	text-align: center;
	margin: 10px 0px 0px 0px;
}
.error {
	color: #F45555;
	font-size: 12px;
	background: #FFD1D1;
	border: 1px solid #F8ACAC;
	padding: 10px;
	display: block;
	clear: both;
	text-align: center;
	margin: 10px 0;
}
/* Errors */
.formError.inline {
	display: block!important;
}
.formError.inline .formErrorContent {
	margin-top: 1px;
	padding: 5px 3%;
	width: 94%;
}

/*****************************
Product Nutrition Lists
*****************************/
.productlabel img {
	width:100%;
}
.figure {
	text-align:right;
}