/*
Theme Name: hazera
Theme URI: http://planwize.com/
Author: Planwize
Author URI: http://planwize.com/
Description: Generic theme for Hazera sites
Version: 2.4.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hazera
Domain Path: /languages/
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

 hazera is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 - Reset
2.0 - Typography
3.0 - Elements
4.0 - Forms
5.0 - Navigation
	5.1 - Links
	5.2 - Menus
6.0 - Accessibility
7.0 - Alignments
8.0 - Clearings
9.0 - Widgets
10.0 - Content
	10.1 - Posts and pages
	10.2 - Asides
	10.3 - Comments
11.0 - Infinite scroll
12.0 - Media
	12.1 - Captions
	12.2 - Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 - Reset
--------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}
*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}
body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}
ol, ul {
	list-style: none;
}
table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a:focus {
	outline: thin dotted;
}
a:hover,
a:active {
	outline: 0;
}
a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 13px;
	font-size: 1.3rem;
	line-height: 1.2;
}
h1, h2, h3, h4, h5, h6 {
	clear: both;
}
p {
	margin-bottom: 0.8em;
}
b, strong {
	font-weight: bold;
}
dfn, cite, em, i {
	font-style: italic;
}
blockquote {
	margin: 0 1.5em;
}
address {
	margin: 0 0 1.5em;
}
pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}
code, kbd, tt, var {
	font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}
abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
mark, ins {
	background: #fff9c0;
	text-decoration: none;
}
sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}
small {
	font-size: 75%;
}
big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
.entry-content ul, .entry-content ol {
	margin: 0 0 1em 1.3em;
}
.entry-content ul {
	list-style: disc;
}
.entry-content ol {
	list-style: decimal;
}
li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}
dt {
	font-weight: bold;
}
dd {
	margin: 0 1.5em 1.5em;
}
img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}
figure {
	margin: 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}
input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	text-decoration: none;
	color: #6a971f;
	font-weight: bold;
}
a:hover,
a:focus,
a:active {
	color: #6a971f;
}

#colophon a{
	color: #4d4d4d;
	font-weight: normal;
}
#colophon .gform_widget .gform_wrapper .gform_footer{
	text-align: right;
}


/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
	border-top: 2px solid #6a971f;
	/* IE10 Consumer Preview */
	background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #F3F3F3 100%);
	/* Mozilla Firefox */
	background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #F3F3F3 100%);
	/* Opera */
	background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #F3F3F3 100%);
	/* Webkit (Safari/Chrome 10) */
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FFFFFF), color-stop(1, #F3F3F3));
	/* Webkit (Chrome 11+) */
	background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #F3F3F3 100%);
	/* W3C Markup, IE10 Release Preview */
	background-image: linear-gradient(to top, #FFFFFF 0%, #F3F3F3 100%);
	box-shadow: 0px 15px 33px -13px #E2E2E2;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation li {
	float: left;
	position: relative;
}
.main-navigation .menu > li:BEFORE{
	content: url("images/Tafrit-Seperator.png");
	position: absolute;
	height: 46px;
	width: 1px;
	left: 0;
	top: 0;
}
.main-navigation .menu > li:last-child:AFTER{
	content: url("images/Tafrit-Seperator.png");
	position: absolute;
	height: 46px;
	width: 1px;
	right: 0;
	top: 0;
}
.main-navigation a {
	display: block;
	text-decoration: none;
	padding: 10px 8px;
	text-align: center;
	font-size: 0.9em;
}
.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	left: -999em;
	z-index: 99999;
	width: 100%;
	background-color: #FBFBFB;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
	border-bottom: 1px dashed #404040;
	margin: 0 10px;
	font-size: 0.9em;
	font-weight: normal;
}
.main-navigation ul ul li {
	float: none;
}
.main-navigation li:hover > a {

}
.main-navigation ul ul :hover > a {
}
.main-navigation ul ul a:hover {
}
.main-navigation ul li:hover > ul {
	left: auto;
}
.main-navigation ul ul li:hover > ul {
	left: 100%;

}
.main-navigation .current_page_item,
.main-navigation .current-menu-item{
	/* IE10 Consumer Preview */
	background-image: -ms-linear-gradient(bottom, #FFFFFF 0%, #C9CAC9 100%);
	/* Mozilla Firefox */
	background-image: -moz-linear-gradient(bottom, #FFFFFF 0%, #C9CAC9 100%);
	/* Opera */
	background-image: -o-linear-gradient(bottom, #FFFFFF 0%, #C9CAC9 100%);
	/* Webkit (Safari/Chrome 10) */
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FFFFFF), color-stop(1, #C9CAC9));
	/* Webkit (Chrome 11+) */
	background-image: -webkit-linear-gradient(bottom, #FFFFFF 0%, #C9CAC9 100%);
	/* W3C Markup, IE10 Release Preview */
	background-image: linear-gradient(to top, #FFFFFF 0%, #C9CAC9 100%);
}
/* Small menu */
.menu-toggle {
	display: none;
}
@media screen and (max-width: 600px) {
	.menu-toggle{
		margin: 6px auto;
	}
	.menu-toggle,
	.main-navigation.toggled .nav-menu {
		display: block;
	}

	.main-navigation ul {
		display: none;
	}
	.main-navigation li{
		float: none;
	}
	.main-navigation .menu > li:BEFORE, .main-navigation .menu > li:last-child:AFTER{
		content: none;
	}

}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}
.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: right;
	text-align: right;
	width: 50%;
}
.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: left;
	width: 50%;
}
.comment-navigation .nav-next .meta-nav:BEFORE,
.paging-navigation .nav-next .meta-nav:BEFORE,
.post-navigation .nav-next .meta-nav:BEFORE{
	content: "\2190";
	display: inline-block;
}
.comment-navigation .nav-previous .meta-nav:BEFORE,
.paging-navigation .nav-previous .meta-nav:BEFORE,
.post-navigation .nav-previous .meta-nav:BEFORE{
	content: "\2192";
	display: inline-block;
}
.nav-previous .meta-nav{
	float: right
}
.nav-next .meta-nav{
	float: left
}


/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: '';
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/

/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
}
.hentry {
	margin: 0 0 1.5em;
}
.byline,
.updated {
	display: none;
}
.single .byline,
.group-blog .byline {
	display: inline;
}
.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}
.bypostauthor {
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}
.wp-caption-text {
	text-align: center;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}
.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}
.gallery-columns-2 .gallery-item {
	max-width: 50%;
}
.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
	max-width: 25%;
}
.gallery-columns-5 .gallery-item {
	max-width: 20%;
}
.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}
.gallery-caption {}


.top-border{
	height: 47px;
	background: url("images/Top-border.png") no-repeat center center;
}
.site-logo{
	margin-bottom: 8px;
	margin-top: -18px;
}
.site-content{
	padding-top: 20px;
	margin-top: 1.5em;
}

.site-footer{
	background-color: #E6E6E6;
	padding: 20px 0;
	position: relative;
}
.pdf-version .site-footer{
	padding: 10px 0;
	background-color: transparent;
	color: inherit;
}
.site-info{
	padding: 20px 0 9px;
	background-color: #B3B3B3;
	color: #fff;
}
.pdf-version .site-info{
	background-color: transparent;
	color: inherit;
}
.site-info a{
	padding: 10px 0 9px;
	color: #fff;
}
.pdf-version .site-info a{
	color: #fff;
	color: inherit;
}

.top-shadow:before {
	content: ' ';
	background: url("images/Shadow.png") no-repeat top center;
	position: absolute;
	height: 7px;
	width: 100%;
	top: 0;
}
.top-shadow{
	margin-bottom: 20px;
}
h1{
	font-size: 28px;
	color: #6a971f;
	padding: 10px 0;
	margin-bottom: 10px;
}
h1.entry-title, h1.page-title{
	border-bottom: 1px solid;
	padding-top: 0;
}
h2, h3.widget-title{
	margin-bottom: 10px;
	font-size: 26px;
	color: #6a971f;
	font-weight: normal;
}
.entry-content h3, .entry-content h3 a{
	color: #6a971f;
	margin: 5px 0;
	font-size: 15px;
}
h3, h3 a, h3 a:hover, .nav-links a{
	color: #000;
	font-weight: bold;
	font-size: 13px;
}
#colophon h3.widget-title {
	color: #000;
	font-size: 1.1em;
	font-weight: bold;
}
/*home */
.home .entry-content{
	margin-top: 0;
}
.home .inner{
	padding: 10px;
	border-bottom: 2px solid #6a971f;
	background: -webkit-radial-gradient(ellipse, #fff, #f3f3f3); /* Safari 5.1 to 6.0 */
	background: -o-radial-gradient(ellipse, #fff, #f3f3f3); /* For Opera 11.6 to 12.0 */
	background: -moz-radial-gradient(ellipse, #fff, #f3f3f3); /* For Firefox 3.6 to 15 */
	background: radial-gradient(ellipse, #fff, #f3f3f3); /* Standard syntax */
}
.home-ticker h3, .widget_news_ticker .home-news-item h3{
	color: #F49600;
}
.home.page-template-page-templateshazeranewco-home-php #social-response .inner{
	background: none;
}
.home.page-template-page-templateshazeranewco-home-php #youtube-box .inner{
	background: none;
	border: none;
	padding: 10px 0;
}
.home-news-seperator{
	border-top: 1px solid;
	padding-bottom: 15px;
}

.home .home-varieties-thumb{
	display: table-cell;
	vertical-align: top;
	width: 40%;
	padding-right: 10px;
}
.home .home-varieties-thumb img{
	width: 100%;
}
.home .home-varieties-content{
	display: table-cell;
	vertical-align: top;
	width: 70%;
	padding-left: 10px;
	border-left: 1px solid;
}
.home .home-varieties-item{
	margin-bottom: 15px;
}
.home #newsletter .inner{
	border-color: #f49600;
}
.home #newsletter .gform_title{
	color: #f49600;
	margin: 0 0 10px;
	font-size: 26px;
	font-weight: normal;
}
.home #newsletter .gform_footer{
	padding: 0;
	text-align: right;
}
.home #newsletter .gform_button{
	background-color: #F49600;
	text-shadow: none;
	color: #FFF;
	border: none;
	box-shadow: none;
	float: none;
}
.home #newsletter .gform_wrapper{
	margin: 0;
}
.home #newsletter .ginput_container input{
	box-shadow: inset 0 -10px 12px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5);
}
.home #newslettet .gform_footer{
	padding: 0;
	text-align: right;
	padding-right: 6px;
}
.home #search-n-nav .inner{
	border-bottom-color: #f49600;
	border-top: 2px solid #6a971f;
	padding: 10px 25px;
}
.page-template-page-templateshazeranewco-home-php.home #search-n-nav .inner{
	padding: 10px 5px;
	text-align: center;
}
.page-template-page-templateshazeranewco-home-php.home #search-n-nav .home-searchform-wrapper{
	margin: 15px 20px;
}
.page-template-page-templateshazeranewco-home-php.home #search-n-nav .box-title{
	font-size: 40px;
}
.home #search-n-nav .box-title{
	text-align: center;
}
.home-menu, .home .home-menu{
	margin: 0;
	list-style: none;
}
.home-menu li{
	margin-bottom: 14px;
	position: relative;
}
.home-menu .sub-menu{
	display: none;
}
.home-menu .current-menu-item > .sub-menu, .home-menu .current-menu-ancestor> .sub-menu {
	display: block;
}
.widget_hazera_catalog .home-menu .sub-menu .current-menu-item > a{
	background-color: #6A971F;
	color: #fff;
}
.home-menu li.opened > .sub-menu{
	display: block;
}
.home-menu li a{
	color: #6a971f;
	display: block;
	padding: 5px 8px;
	background-color: #d0d0d0;
	background-image: -ms-linear-gradient(bottom, #d0d0d0 0%, #e3e3e3 100%);
	background-image: -moz-linear-gradient(bottom, #d0d0d0 0%, #e3e3e3 100%);
	background-image: -o-linear-gradient(bottom, #d0d0d0 0%, #e3e3e3 100%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d0d0d0), color-stop(1, #e3e3e3));
	background-image: -webkit-linear-gradient(bottom, #d0d0d0 0%, #e3e3e3 100%);
	background-image: linear-gradient(to top, #d0d0d0 0%, #e3e3e3 100%);
	border-radius: 4px;
}
.widget_hazera_catalog .home-menu li.menu-item-has-children a{
	margin-right: 30px;
}

.home-menu li a:hover{
	color: #fff;
	background-color: #6a971f;
	background-image: -ms-linear-gradient(bottom, #6a971f 0%, #7db523 100%);
	background-image: -moz-linear-gradient(bottom, #6a971f 0%, #7db523 100%);
	background-image: -o-linear-gradient(bottom, #6a971f 0%, #7db523 100%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #6a971f), color-stop(1, #7db523));
	background-image: -webkit-linear-gradient(bottom, #6a971f 0%, #7db523 100%);
	background-image: linear-gradient(to top, #6a971f 0%, #7db523 100%);
}
.home-menu li:hover:after{
	color: #fff;
}
/*.home-menu li.menu-item-has-children:hover:after{
	color: #6a971f;
}*/
/*.home-menu li a:after{
	content: "\f0da";
	font-family: FontAwesome;
	position: absolute;
	right: 9px;
	font-size: 1.3em;
}
.widget_hazera_catalog .home-menu li.menu-item-has-children a:after{
	right: 38px;
}*/
/*.home-menu li.menu-item-has-children:after{
	content: "\f0da";
	font-family: FontAwesome;
	position: absolute;
	right: 9px;
	top: 4px;
	font-size: 1.3em;
	color: #6A971F;
	padding: 0 3px 0 7px;
	content: "\f0fe";
	right: 0;
	cursor: pointer;
}*/
.home-menu li.menu-item-has-children .open-button{
	font-size: 1.3em;
	color: #6a971f;
	padding: 0 3px 0 7px;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 4px;
}

.home-searchform-wrapper{
	margin: 15px 0;
	position: relative;
}
#header-search-box{
	position: absolute;
	right: 10px;
	top: 58px;
}
.home-searchform-wrapper .search-form .search-field{
	width: 100%;
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	-webkit-box-sizing: border-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
	padding-right: 28px;
}
.home-searchform-wrapper:after{
	content: "\f002";
	font-family: FontAwesome;
	position: absolute;
	right: 9px;
	top: 2px;
	font-size: 1.2em;
	color: #6a971f;
}
.home-searchform-wrapper .search-form .search-submit{
	display: none;
}
a.find-more:before, a.read-more:before{
	content: "\f0a9";
	font-family: FontAwesome;
	display: inline-block;
	padding-right: 7px;
}
/* End home */

/* Product main page*/
.term-box{
	margin-bottom: 10px;
}
.page-template-page-templateshazera-global-our-crops-php .term-box.one-fifth.column{
	width: 156px;
	margin: 0 20px 10px;
}
.term-box a{
	display: block;
}
.term-box img{
	width: 100%;
}
/* End Product main page*/
/* product category*/
.tax-product_cat .product .omega{
	border-bottom: 1px solid #6a971f;
}

.products-table .product{
	display: table;

}
.products-table .product > *{
	display: table-cell;
	vertical-align: top;
}
.products-table .product-thumb{
	padding-right: 10px;
	width: 15.8%;
}
.products-table .product-thumb img{
	width: 100%;
}
.products-table .product-content{
	padding-left: 10px;
	border-bottom: 1px solid #6a971f;
}

/* Product single page */
.product dd, .product dt{
	float: left;
}
.product dd{
	margin: 0 0 1em 1em;
	width: 56%;
}
.product dt{
	width: 40%;
}
.just-click-here{
	background-color: #6A971F;
	color: #fff;
	border-radius: 4px;
	padding: 4px 6px;
}

/* Hazera Catalog Widget */
/*.widget_hazera_catalog .search-n-nav .inner{
	border-bottom: 2px solid #6A971F;
	background: -webkit-radial-gradient(ellipse, #FFF, #F3F3F3);
	background: -o-radial-gradient(ellipse, #fff, #f3f3f3);
	background: -moz-radial-gradient(ellipse, #fff, #f3f3f3);
	background: radial-gradient(ellipse, #FFF, #F3F3F3);
	border-bottom-color: #f49600;
	border-top: 2px solid #6a971f;
	padding: 10px 25px;
}*/
.widget_hazera_catalog .home-menu .sub-menu{
	margin: 0;
}
.widget_hazera_catalog .home-menu .sub-menu li{
	margin-bottom: 0;

}
.widget_hazera_catalog .home-menu .sub-menu .sub-menu > li a {
	padding-left: 26px;
}
.widget_hazera_catalog .home-menu .sub-menu li a{
	background: none;
	background-color: #FFF;
	padding-left: 16px;
	border-bottom: 1px solid #D0D0D0;
}
.widget_hazera_catalog .home-menu .sub-menu li a:hover{
	color: #6A971F;
}


/* Contact Form */
.page-template-page-templatescontact-page-php #main .gform_wrapper{
	max-width: none;
	margin: 0;
	border-bottom: 2px solid #6A971F;
	background: -webkit-radial-gradient(ellipse, #FFF, #F3F3F3);
	background: -o-radial-gradient(ellipse, #fff, #f3f3f3);
	background: -moz-radial-gradient(ellipse, #fff, #f3f3f3);
	background: radial-gradient(ellipse, #FFF, #F3F3F3);
	border-bottom-color: #F49600;
	padding: 10px 25px;
}
.page-template-page-templatescontact-page-php #main .ginput_container input,
.page-template-page-templatescontact-page-php #main .ginput_container select,
.page-template-page-templatescontact-page-php #main .ginput_container textarea{
	background-color: #D0D0D0;
	background-image: -ms-linear-gradient(bottom, #d0d0d0 0%, #e3e3e3 100%);
	background-image: -moz-linear-gradient(bottom, #d0d0d0 0%, #e3e3e3 100%);
	background-image: -o-linear-gradient(bottom, #d0d0d0 0%, #e3e3e3 100%);
	background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #D0D0D0), color-stop(1, #E3E3E3));
	background-image: -webkit-linear-gradient(bottom, #D0D0D0 0%, #E3E3E3 100%);
	background-image: linear-gradient(to top, #D0D0D0 0%, #E3E3E3 100%);
}
.page-template-page-templatescontact-page-php .gform_footer{

}
#page .gform_footer{
	text-align: right !important;
	padding-right: 4% !important;
}
#page .gform_footer .button.gform_button{
	float: none;
}
#page .button.gform_button{
	background-color: #F49600;
	text-shadow: none;
	color: #FFF;
	border: none;
	box-shadow: none;
	float: none;
}
/* End Contact From */

/*Sidebars */
#secondary.widget-area .widget{
	border-bottom: 2px solid #F49600;
	background: -webkit-radial-gradient(ellipse, #FFF, #F3F3F3);
	background: -o-radial-gradient(ellipse, #fff, #f3f3f3);
	background: -moz-radial-gradient(ellipse, #fff, #f3f3f3);
	background: radial-gradient(ellipse, #FFF, #F3F3F3);
	padding: 10px 25px;
}
#secondary.widget-area .widget.widget_hazera_catalog{
	border-bottom: 2px solid #6A971F;
	border-bottom-color: #F49600;
	border-top: 2px solid #6A971F;
}

.our-people-table, .our-dist-table{
	/*border-spacing: 20px;*/
}

.our-people-table td, .our-dist-table td{
	vertical-align: top;
}
.our-people-table td img{
	max-width: 70px;
}
.our-dist-table td img{
	width: 100%;
}
.our-people-table td:FIRST-CHILD, .our-dist-table td:FIRST-CHILD{
	padding-left: 0;
	width: 15%;
}
.our-people-table td, .our-dist-table td{
	padding: 20px 10px 10px 0;
	border-bottom: 1px solid #6A971F;
}
.our-people-table .fa, .our-dist-table .fa{
	color:#6A971F;
}


/* Jcarousle and usquare*/

.usquare_module_wrapper .usquare_block h2, .usquare_module_wrapper .usquare_block_extended .usquare_about{
	font-family: sans-serif !important;
}
.usquare_square_text_wrapper > img{
	display: none;
}
.usquare_square.half_usquare_square{
	border-bottom: 2px solid #6A971F;
}
.usquare_module_wrapper .usquare_square_text_wrapper h2{
	padding-top: 40px !important;
}

/*
This is the visible area of you carousel.
Set a width here to define how much items are visible.
The width can be either fixed in px or flexible in %.
Position must be relative!
*/
.jcarousel {
	position: relative;
	overflow: hidden;
	width: 120px;
}

/*
This is the container of the carousel items.
You must ensure that the position is relative or absolute and
that the width is big enough to contain all items.
*/
.jcarousel ul {
	width: 2000em;
	position: relative;

	/* Optional, required in this case since it's a <ul> element */
	list-style: none;
	margin: 0;
	padding: 0;
}

/*
These are the item elements. jCarousel works best, if the items
have a fixed width and height (but it's not required).
*/
.jcarousel li {
	/* Required only for block elements like <li>'s */
	float: left;
}
.jcarousel li img{
	padding: 0 5px;
}

.usquare_block_extended ul.social_background{
	width: 1000em;
	position: relative;
}

.usquare_module_wrapper .jcarousel{
	position: relative;
	overflow: hidden;
	width: 192px;
	margin: auto;
}
.jcarouselWrapper{
	position: relative;
}
.jcarouselNav{
	position: absolute;
	top: 5px;
	color: #E6E6E6;
	font-size: 2.5em;
}
.jcarouselNav:HOVER{
	color: #E6E6E6;
}
.jcarouselNav.inactive{
	cursor: default;
}
.jcarousel-prev{
	left: 20px;
}
.jcarousel-next{
	right: 20px;
}

.usquare_module_wrapper .viewport, .usquare_module_wrapper .scrollbar{
	height: 214px !important;
}


/* Hazera corp landing page */
#hazeraCorpLandPage-rightCol .inner{
	padding: 20px;
	box-shadow: 0px 0px 15px 1px rgba(0, 0, 0, 0.2);
	margin-top: -105px;
	background-color: #fff;
}
.hazeraCorpLandPage-youtube{
	width: 100%;
	height: 530px;
}
.page-template-page-templateshazera-corp-landingpage-php .site-logo {
	margin-top: 10px;
}
.page-template-page-templateshazera-corp-landingpage-php .site-content{
	margin-top: 0;
	padding-top: 0;
}
.hazera-bottom-header-decoration{
	margin: 15px 0 10px;
}
.hazera-bottom-header-decoration > div{
	float: left;
	width: 50%;
	height: 7px;
}
.hazera-bottom-header-decoration .decoration-orange{
	background-color: #F49600;
}
.hazera-bottom-header-decoration .decoration-green{
	background-color: #6A971F;
}

.custom-select select{
	background: transparent;
	width: 100%;
	padding: 5px;
	font-size: 16px;
	line-height: 1;
	border: 0;
	border-radius: 0;
	height: 34px;
	cursor: pointer;
	/*-webkit-appearance: none;*/
}
.custom-select{
	width: 100%;
	height: 34px;
	overflow: hidden;
	/*background: url(new_arrow.png) no-repeat right #ddd;*/
	border: 1px solid #ccc;
	border-radius: 5px;
	box-shadow: 0 0 22px -4px rgba(0, 0, 0, 0.2) inset;

}
#lang-content > div{
	display: none;
}
#lang-content > div.active{
	display: block;
}
#lang-content{
	font-size: 1.1em;
	line-height: 1.3;
}
#lang-content .bottom-links .button{
	display: inline-block;
	padding: 7px 10px;
	margin-top: 1px;
	font-size: 1.4em;
	border-radius: 5px;
	color: #FFF;
	font-weight: normal;
	background-color: #6D9B20;
	background-image: -ms-linear-gradient(top, #6D9B20 0%, #7CB423 100%);
	background-image: -moz-linear-gradient(top, #6D9B20 0%, #7CB423 100%);
	background-image: -o-linear-gradient(top, #6D9B20 0%, #7CB423 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6D9B20), color-stop(1, #7CB423));
	background-image: -webkit-linear-gradient(top, #6D9B20 0%, #7CB423 100%);
	background-image: linear-gradient(to bottom, #6D9B20 0%, #7CB423 100%);
}
#lang-content .facebook-link{
	background: url("images/F-Button.png") no-repeat;
	display: inline-block;
	width: 41px;
	height: 41px;
	text-indent: -999px;
	vertical-align: top;
	float: right;
}

.breadcrumb ul{
	list-style: none;
	margin-bottom: 15px;
}
.breadcrumb li{
	float: left;
}
.breadcrumb li{
	padding: 5px 5px 5px 0;
}
.breadcrumb li:after{
	content: "\f101";
	font-family: FontAwesome;
	padding-left: 5px;
}
.breadcrumb li:last-child:after{
	content: none;
}
.pdf-version.single-product .entry-header .entry-title:after{
	content: none;
}


/* Hazera Global Our Crop popup */
.white-popup {
	position: relative;
	background: #FFF;
	width: auto;
	max-width: 740px;
	margin: 20px auto;
	border-bottom: 4px solid #6A971F;
}
.white-popup td.product-content-inPopup{
	vertical-align: top;
}
.white-popup td.product-image-inPopup{
	vertical-align: middle;
	width: 30%;
}
.productPopup table{
	margin: 0;
}
.product-content-inPopup{
	padding: 20px;
	background: -webkit-radial-gradient(ellipse, #FFF, #F3F3F3);
	background: -o-radial-gradient(ellipse, #fff, #f3f3f3);
	background: -moz-radial-gradient(ellipse, #fff, #f3f3f3);
	background: radial-gradient(ellipse, #FFF, #F3F3F3);
}
.country-selection-wrapper .country-selection{
	margin: 10px;
}

/* overlay at start */
.mfp-fade.mfp-bg {
	opacity: 0;

	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
	opacity: 0.8;
}
/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
	opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
	margin-top: -30px;
	opacity: 0;

	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
	margin-top: 0;
	opacity: 1;
}
/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
	margin-top: -30px;
	opacity: 0;
}

.global-presence-country-content{
	display: none;
}
.search-results-bottom-search .home-searchform-wrapper{
	max-width: 300px;
}
.search-results-bottom-search h3{
	color: #6A971F;
	font-size: 15px;
}
/* Pdf version */
#pdf-version-main .entry-title:after{
	content: url("images/H-green-25px.png");
	display: inline;
}
#footer-tomate-res-info{
	margin-top:80px;
}
.footer-info-pdf-vesrion{
	font-size:11px;
}
#pdf-version-main{
	margin-top:-40px;
	font-size:20px;
	line-height:22px;
}
.pdf-version-img{
	margin-top:122px;
}
#pdf-version-main .product-attr{
	font-size:14px;
}
#footer-pdf-title{
	width:100%;
}
.content-pdf-version{
	text-align: justify;
}
.hazera-pdf-footer-title{
	width:500px;
}

/*--------------------------------------------------------------
Seasons table
--------------------------------------------------------------*/
.months-title{
	height: 20px;
}
.months-title th{
	vertical-align: middle;
	text-align: center;
	border-left: 1px solid #d3d3d3;
}
.months-title th:first-of-type{
	border-left: none;
}
.months-data td{
	position: relative;
	background: #ededed;
	height: 20px;
	width: 15px;
}
.months-data div{
	border-left: 1px solid #d3d3d3;
}
.first-week,
.second-week,
.third-week,
.fourth-week{
	position: absolute;
	height: 100%;
	width: 25%;
}
.months-data .sow,
.months-data .plant,
.months-data .harvest,
.months-data .storage{
	border-left: none;
}
.second-week{
	left: 25%;
}
.third-week{
	left: 50%;
}
.fourth-week{
	left: 75%;
}
.sow,
#key-sow{
	background: #BC290A;
}
.plant,
#key-plant{
	background: #FBB900;
}
.harvest,
#key-harvest{
	background: #74AF26;
}
.storage,
#key-storage{
	background: #6F91A7;
}
.table-keys{
	margin-bottom: 25px;
}
.table-keys-wrapper{
	display: inline-block;
}
.key-text{
	vertical-align: middle;
	padding: 0 8px 0 5px;
	font-weight: bold;
}
.key-color{
	display: inline-block;
	vertical-align:middle;
	width: 20px;
	height: 20px;
}
.products-table .product-content{
	border-bottom: none;
}
.products-table article{
	border-bottom: 1px solid #6a971f;
}
.archive .product-thumb{
	vertical-align: middle;
}
.archive .product-content .entry-content,
.archive .product-content .seasons-table-wrapper{
	display: inline-block;
	vertical-align: middle;
}
.archive .seasons-table-wrapper {
	width: 65%;
}
.archive .entry-content{
	padding-right: 5px;
}
.archive .months-title th{
	border-top: none;
}
.taxonomy-description{
	border-bottom: 1px solid #6a971f;
	padding-bottom: 5px;
	margin: 0 0 1.5em;
}
.product-title-icon-blog{
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: bottom;
	margin-left: 8px;

}
.product-title-icon-single {
	width: 25px;
	height: 25px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 5px;
}
.no-icon{
	display: inline-block;
	height: 20px;
	width: 20px;
}
.new-icon {
	vertical-align: bottom;
	margin: 0 15px;
}
.title-icon{
	vertical-align: bottom;
	margin: 0 10px;
}
.single-product .title-icon{
	vertical-align: middle;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
	.first-week,
	.second-week,
	.third-week,
	.fourth-week{
		position: static;
		float: left;
	}
}


@media screen and (max-width: 780px) {
	.archive .seasons-table-wrapper {
		width: 100% !important;
		font-size: 0.7em;
	}
}

.archive .seasons-table-wrapper {
	width: 65%;
}

.tax-product_cat .table-keys{
	width: 220px;
	float: right;
	margin: 0 10px 0 10px;
}

.tax-product_cat .table-keys-wrapper{
	display: block;
	margin: 10px 0;
}