/*
Theme Name: FarmingFirst4
Author: David Earl adapting Twenty Twelve by the WordPress team
Author URI: http://frankieandshadow.com
Description: Farming First's summer 2014 update
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =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, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 99%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
a {
    text-decoration: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title {
	font-size: 20px;
	font-size: 1.4285rem;
	// line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}



.page-title,
.entry-content th,
.comment-content th {
	font-size: 13px;
	font-size: 0.9285rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

.widget-title {
	font-size: 20px;
	font-size: 1.4285rem;
	line-height: 1.2;
	font-weight: normal;
	color: #78a22f;
	clear: none;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #ccc;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
    line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
    cursor: default;
}
.menu-toggle:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	border: none;
}
li.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 1.5;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 24px 0;
	margin: 1.7142rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #444;
	/* background: url(images/logoflash.png) #78a22f no-repeat top left; */
}
a {
	outline: none;
	color: #869F24;
}
a:hover {
	text-decoration: underline;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:hover,
.main-navigation .assistive-text:active,
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	padding: 0 8px;
	padding: 0 0.5714rem;
}
.site-content {
	margin: 10px 0 0 0;
	margin: 0.7143rem 0 0 0;
	background-color: white;
	padding: 10px;
}
.widget-area {
	margin: 10px 0 0 0;
	margin: 0.7143rem 0 0 0;
}

/* Header */
.site-header {
	// padding: 24px 0;
	// padding: 1.714285714rem 0;
    position: relative;
}
.site-header hgroup h1 {
    clear: none;
}
.site-header hgroup h2 {
	text-align: center;
}
.site-header hgroup h1 a,
.site-header hgroup h2 a {
	color: #515151;
	display: inline-block;
}
.site-header hgroup h1 a:hover,
.site-header hgroup h2 a:hover {
	color: #21759b;
}
.site-header hgroup h1 {
	font-size: 1px;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header hgroup h1 img#ff-logo {
    width: 100%;
    height: auto;
}
.site-header hgroup h2 {    
	font-weight: normal;
	font-size: 17px;
	font-size: 1.214285rem;
	line-height: 1.3;
	color: #757575;
	max-width: 660px;
	width: 100%;
}
.site-header .site-description-container {
	border-bottom: 7px solid #B2D80F; /* #A7BE25; */
	padding-bottom: 1px;
	position: relative;
	top: -10px;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Language menu */
.language-navigation {
    position: absolute;
    top: 20px;
    right: 30px;
    background: #869F24 url(images/lang-arrow.png) top right no-repeat;
    font-size: 14px;
    font-size: 1rem;
    padding: 0 25px 0 5px;
    padding: 0 1.7857rem 0 0.3571rem;
    height: 20px;
    height: 1.4286rem;
    margin-right: 14px;
    overflow: hidden;
    border: 1px solid #B2D80F;
    z-index: 1;
}
.language-navigation:hover {
    border: 1px solid #B2D80F;
    height: auto;
}
.language-navigation ul {
    list-style-type: none;
}
.language-navigation li {
    list-style-type: none !important;
    margin: 0 !important;
}
.language-navigation a {
    color: #869F24;
    line-height: 20px;
    line-height: 1.4286rem;
    font-size: 13px;
    font-size: 0.9285rem;
}
.language-navigation a:hover {
    color: #555555;
    text-decoration: underline;
}


/* Navigation Menu */
.main-navigation {
}
.menu-main-container li {
	margin-top: 8px;
	margin-top: 0.5714rem;
	font-size: 17px;
	font-size: 1.214285rem;
	line-height: 1.42857143;
}
.menu-main-container ul.sub-menu {
    margin-left: 20px;
}

.menu-main-container a {
    color: #7d9008;
    font-weight: normal;
}
.menu-main-container a:hover {
	color: #CCCCCC;
}
.menu-main-container ul.nav-menu,
.menu-main-container div.nav-menu > ul {
	display: none;
}
.menu-main-container ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

.menu-subjects-container {
	font-size: 14px;
	font-size: 1.0rem;
	line-height: 1.42857143;
	background-color: #B2D80F;
	padding: 0 5px;
}
#menu-subjects li {
    height: 62px;
    margin: 0 10px 0 0;
    font-size: 18px;
    /* text-transform: uppercase; */
    background: transparent;
    background-position: 0 50%; /* url added later */
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    vertical-align: top; /* this is not supposed to do anything, but Safari seems to be upset otherwise */
}

#menu-subjects li:last-child {
    margin-right: 0;
}
#menu-subjects li a {
    display: block;
    padding: 0 0 0 50px;
    color: white; /* #869F24; */
    font-weight: normal;
    white-space: normal;
    font-size: 15px;
    line-height: 1.3;
}
#menu-subjects li a:hover {
    color: #869F24;
}

/* related menu (in a widget) */
.menu-related-container {
	font-size: 10px;
	font-size: 1.0rem;
	line-height: 1.42857143;
}
#menu-related li {
    background: left center no-repeat; /* url added later */
    display: inline-block;
    padding: 0; 
    margin: 0;
    padding: 0 15px 0 0;
    font-size: 14px;
    /* font-weight: bold; */
    line-height: 38px;
    cursor: pointer;
}
#menu-related li a {
    display: inline-block;
    line-height: 1.5;
    color: #869F24;
    white-space: normal;
    padding-left: 45px;
}
#menu-related li a:hover {
    color: #555555;
}

/* feedback button */
#feedback-area {
    position: absolute;
    padding: 0;
    top: 0;
    right: 0;
    border-left: 2px solid #FDFFF8;
    border-top: 2px solid #FDFFF8;
    border-bottom: 2px solid #FDFFF8;
    width: 30px;
    width: 2.1428rem;
}
#feedback-area aside {
    margin: 0;
    padding: 0;
    background-color: transparent;
}
#feedback-area a {
    display: block;
    width: 10px;
    padding: 10px;
    font-size: 18.2px;
    font-size: 1.3rem;
    line-height: 21px;
    line-height: 1.5rem;
    color: #FDFFF8;
    background-color: transparent;
}
#feedback-area a:hover {
    color: #555555;
    background-color: #FDFFF8;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* SEARCH */
.search-form input[type=search] {
	background-color: #CCC;
	font-size: 14px;
	font-style: italic;
	border: 0;
	padding: 2px 4px 2px 4px;
	position: relative;
	height: 29px;
	width: 100%;
	max-width: 500px;
	float: left;
}

.search-form input[type=submit] {
	background-color: #78a22f;
	background-image: none;
	color: #fff;
	border: 0;
	padding: 2px 12px;
	height: 29px;
	float: left;
	margin-left: 4px;
	font-family: fontawesome;
}



/* 
	Sidebar
*/
	.widget-area .widget {
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		hyphens: auto;
		margin-bottom: 15px;
		margin-bottom: 1.0714rem;
		word-wrap: break-word;
		background-color: #E5E3D1;
		/* padding: 5px; */
	}
	.widget-area .widget p,
	.widget-area .widget li,
	.widget-area .widget .textwidget {
		font-size: 13px;
		font-size: 0.928571429rem;
		line-height: 1.846153846;
	}
	.widget-area .widget p {
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.widget-area .textwidget ul {
		list-style: disc outside;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.widget-area .textwidget li {
		margin-left: 36px;
		margin-left: 2.571428571rem;
	}
	.widget-area .widget a {

	}
	.widget-area .widget a:hover {

	}
	.widget-area #s {
		width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
	}
	.widget-area h2 {
	    clear: none;
	    font-size: 20px;
	    font-weight: normal;
	    color: #869F24;
	}

	.home .widget-area h2,
	.home .widget-easy-twitter-feed-widget-kamn h3
	{
	    font-size: 16px;
	}


	/* Recent Posts */
	.widget-area .popular-posts,
	.widget-area .widget_recent_entries,
	.widget-area .widget_search,
	.widget-area .cat-post-widget {
		background: none;
	}

	.popular-posts .widget-title,
	.widget_recent_entries .widget-title,
	.cat-post-widget .widget-title {
		text-transform: uppercase;
		color: #636363;
		font-weight: 700;
		margin-bottom: 48px;
		margin-bottom: 1.5rem;
		padding-bottom: 22px;
		padding-bottom: 1.571428571rem;
		border-bottom: 1px solid #ededed;
		line-height: 1;
	}

	.popular-posts li + li,
	.widget_recent_entries li + li,
	.cat-post-widget li + li {
		margin-top: 20px;
	}

	.wpp-post-title,
	.widget_recent_entries li a,
	.cat-post-widget li a {
		font-size: 18px;
		font-size: 1.2857rem;
		line-height: 1.2;
		hyphens: none;
	}

	.wpp-list img {
		float: left;
		margin-right: 10px;
	}

	.widget-area .widget .wpp-excerpt {
		margin: 20px 0 0;
		line-height: 20px;
		line-height: 1.4285;
	}

	.widget p.readmore {
		//background-color: #78a22f;

		position: relative;
		line-height: 22px;
		line-height: 1.5714rem;
		font-size: 10px;
		font-size: 0.7142rem;
		text-transform: uppercase;
		color: #78a22f;
		display: inline-block;
		//padding: 0 10px;
		margin-bottom: 0;

		padding:0;
		background:none;
		margin:0px;
	}

	.widget p.readmore a { color:#78a22f; }
	.widget p.readmore a:hover { text-decoration:underline; }
	.widget p.readmore:after {
		content: '';
		position: absolute;
		right: -10px;
		border: 11px solid transparent;
		border-width: 11px 5px;
		border-left-color: #78a22f;
		display:none;
	}

	.widget_search label {
		width: 80%;
		float: left;
		max-width: 500px;
	}

	.widget-search input[type=search] {
		width: 100%;
		float: none;
	}






/* Footer */
footer[role="contentinfo"] {
	border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 940px;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #21759b;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1rem;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-meta { 
	overflow: hidden;
	text-overflow: ' [...]';
	color: #b2d80f;
	height: 1.2em;
	white-space: nowrap;
	font-size: 16px;
	font-size: 1.1428rem;
	font-weight: 200;
}
	.header-meta .entry-date { color: #9a9a9a; }
	.header-meta a { color: #b2d80f; }
	.header-meta .entry-tag-list { }
	.header-meta .separator { color: #9a9a9a; }


.hero-article {
	margin: 0 10px;
}
	
	.hero-entry {
		position: relative;
		line-height: 0;
	}

	.hero-entry .readmore {
		position: absolute;
		bottom: 0;
		right: 50px;
		font-size: 22px;
		font-size: 1.5714rem;
		padding: 18px 32px 15px;
		line-height: 1;
	}

.comments-link a,
.entry-meta a {
	color: #78a22f;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #555555;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-summary img {
    float: left;
    margin: 0 20px 20px 0;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	font-size: 1.285714286rem;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.ffcn_block .ffcn_body p,
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 10px;
	margin: 0 0 0.7143rem;
	line-height: 1.4;
	font-size: 13px;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
	margin: 0 0 10px 0;
	margin: 0 0 0.7143rem 0;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 20px;
	margin: 0 0 0 1.4286rem;
}
.entry-content blockquote,
.comment-content blockquote {
	padding: 0 30px 0 36px;
	padding: 0 2.1428rem 0 2.5714rem;
	position: relative;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter {
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.entry-content thead td {
	border-top: 0;
}
.site-content article {
	margin-bottom: 24px;
	margin-bottom: 1.7142rem;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;

	background-color: #f8f8f8;
	border-top: 1px solid #ededed;
	border-bottom: 1px solid #ededed;
	padding: 20px 10px;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* SOCIAL SHARING */

.small-share { float:left; width:100px; clear:left; margin-right:24px; margin-bottom:12px; }
.btn-share-toggle { display: none; }

.share-toggle-container {
	margin-bottom: 10px;
}


.hero-article .share-toggle-container {
	margin: 10px 0;
}

.share-toggle-container label {
	background-color: #78A22F;
	border: 1px solid #78A22F;
	padding: 10px 15px;
	display: inline-block;
	cursor: pointer;
	color: #fff;
}
.ffn_news_table .share-toggle-container label, .small-share .share-toggle-container label {
		padding: 5px 10px;
		font-size:80%;
		text-transform:uppercase;
		width:80px;
		border:0px;
		text-align:center;
}

.entry-summary { position:relative; }
.entry-summary .share-toggle-container {
	float:right;
}

.share-container {
	visibility: hidden;
	transform: translateY(-10%);
	opacity: 0;
	transition: transform 0.2s ease-out, opacity 0.2s, visibility 0s;
	background-color: #F8F8F8;
	padding: 20px;
	width: 100%;
	max-width: 32em;
	position: absolute;
	z-index: 500;
	box-shadow: 2px 2px 5px rgba(0,0,0,0.1);
	box-sizing: border-box;
	border: 1px solid #E4E4E4;
	margin-top: -25px;
}

.share-container h3 { display: none; }

.ie7 .share-container,
.ie8 .share-container {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	position: static;
	max-width: none;
	margin-top: 0;
}

.ie7 .share-container h3,
.ie8 .share-container h3 {
	display: block;
	margin-bottom: 10px;
}

.ie7 .share-toggle-container,
.ie8 .share-toggle-container {
	display: none;
}

.ie7 .share-close,
.ie8 .share-close {
	display: none;
}

.btn-share-toggle:checked ~ .share-toggle-container label {
	background-color: #A0DB3F;
	border: 1px solid #78A22F;
}

.btn-share-toggle:checked ~ .share-container {
	visibility: visible;
	opacity: 1;
	transform: translateY(10px);
}


.entry-summary .share-container {
	left:auto;
	right:0;
	margin-top:25px;
}


.share-button,
div.ffn_news a.share-button {
	text-align:center;
	padding: 4px 6px;
	color: #fff;
	display: none; /* Show via JS */
}

.share-button:hover,
div.ffn_news a.share-button:hover {
	text-decoration: none;
	cursor: pointer;
	color: #fff;
}

.share-button + .share-button {
	margin-left: 14px;

}

.s_facebook {background-color:#3C5899}
.s_facebook:hover {background-color:#1f2e50}
.s_linkedin {background-color:#0177B5}
.s_linkedin:hover {background-color:#003450}
.s_twitter {background-color:#28A9E0}
.s_twitter:hover {background-color:#14698e}

.share-url-container p {
	margin: 20px 0 0;
}

.share-text-url {
	width: 100%;
	max-width: 250px;
	margin-top: 10px;
	color: #78A22F;
}

.share-text-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-align: center;
	vertical-align: middle;
	background: #F8F8F8;
	font-size: 2em;
	font-weight: 700;
}

.share-text-overlay span {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
}

.share-close {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 1.5em;
	cursor: pointer;
	padding: 10px;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}

/* Archive categories with a hero article */
.archive-header {
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 20px;
}

section .archive-header {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 12px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: bold;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border: 1px solid #007cbd;
}
.comments-area li.bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content {
	background-color: transparent;
	padding: 0;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	width: auto;
}
.template-front-page .widget-area .widget {
    background: white;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #869F24;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


.menus-container,
#feedback-area {
    display: none; /* overridden below except for small screens where toggleable in JS */
}

body .site {
    margin-top: 14px;
    margin-top: 1rem;
    /* margin-bottom: 14px;
    margin-bottom: 1rem; */
}

/* =Home page
----------------------------------------------- */

.home-column {
    float: left;
    width: 300px;
    margin-right: 20px;
}

#home-column2 {
    width: 620px;
    margin-right: 0;
}
#home-column2b {
    margin-right: 0;
}

#home-column3 {
    clear: both;
    width: 100%;
    margin-right: 0;
}
#home-column3 aside {
    margin-bottom: 0;
}

.home-column h2,
.home-column .widget-easy-twitter-feed-widget-kamn h3
{
    text-transform: uppercase;
}

.home-column .widget-easy-twitter-feed-widget-kamn h3 {
    margin-bottom: 5px;
}

.home-column .widget-easy-twitter-feed-widget-kamn iframe .timeline-footer {
    display: none;
}

#home-column2 { display: none; }
@media screen and (min-width: 718px) {
    #home-column2, #home-column3 { display: block; }    
    #home-column1 { display: none; }    
}
@media screen and (min-width: 960px) {
    #home-column1, #home-column2, #home-column3 { display: block; }    
}

.home-item5, .home-item2 { border: 0; }
.home-item1, .home-item3, .home-item4 { border-bottom: 5px solid #B2D80F; }
@media screen and (min-width: 960px) {
    .home-item1, .home-item5 { border-bottom: 5px solid #B2D80F; }
    .home-item2, .home-item3, .home-item4 { border: 0; }
}

@media screen and (min-width: 960px) {
    #home-column2a {
	padding-right: 10px;
	border-right: 5px solid #B2D80F;
	margin-bottom: 10px;
    }
}

/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Minimum width of 718 pixels. */
@media screen and (min-width: 718px) {
        .site {
	    padding: 0 24px;
	    padding: 0 1.714285714rem;
	}
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 940px;
		overflow: hidden;
	}
        .full-site {
            width:100%;
            max-width:100%;
            padding-left:0px;
            padding-right:0px;
        }
        .full-site .subjects-menu, .full-site  .menu-main-container { width:95%; margin:0px auto;}
        .full-site h1.site-title { margin-left:2.5%; }
        .full-site .ff-sharing-wa { margin-right:2.5%; }
        .full-site h2.site-description { margin-left:200px; }
	.site-content {
		float: left;
		width: 595px;
	}
	body.single-attachment .site-content,
	body.full-width .site-content {
		width: 764px;
	}
	
	body.template-front-page .site-content {
	    width: 100%;
	}

	#secondary {
	    width: 315px;
	    float: left; /* amended to right for wider windows */
	}

	body.template-front-page #secondary {
	    display: none;
	    width: 260px;
	    /* margin-left: 685px; */
	}

	.site-header hgroup h1,
	.site-header hgroup h2 {
		text-align: left;
	}
	.site-header hgroup h1 {
		/* font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846; */
		margin-bottom: 0;
	}
	.site-header hgroup h1 img#ff-logo {
	    width: 660px;
	    height: 88px;
	}
	.site-header hgroup h2 {
		margin-left: 170px;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		display: inline-block !important;
		text-align: left;
		width: 100%;
	}
	.main-navigation ul {
		margin: 0 0 10px 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		border-bottom: 0;
		line-height: 1;
		white-space: nowrap;
	}
	.main-navigation li a:hover {
		color: #000;
	}
	.main-navigation li {
		margin: 0 20px 0 0;
		margin: 0 1.429rem 0 0;
		position: relative;
	}
	.main-navigation li ul {
		display: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
		border: 1px solid white;
	}
	.main-navigation ul li:hover > ul {
		border-left: 0;
		display: block;
		border-bottom: 2px solid #c7d500;
	}
	.main-navigation li ul li {
	    margin-right: 0;
	}
	.main-navigation li ul li a {
		background: white;
		border: 2px solid #B2D80F;
		border-bottom: 0;
		display: block;
		font-size: 13px;
		font-size: 0.928571429rem
		line-height: 1.8;
		padding: 8px 10px;
		padding: 0.571428571rem 0.714285714rem;
		width: 180px;
		width: 12.85714286rem;
		white-space: normal;
	}
	.menu-main-container ul.sub-menu {
	    margin: 0;
	}
	.main-navigation li ul li a:hover {
		color: #444;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
	    color: black;
	    font-weight: normal;
	}
	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {
		font-size: 22px;
		font-size: 1.571428571rem;
		color: #869F24;
		margin-bottom: 10px;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.widget-area .widget
	/*, .template-front-page.two-sidebars .widget-area .front-widgets */ {
	        padding: 10px;
		margin-bottom: 15px;
		margin-bottom: 1.0714rem;
	}
	.template-front-page .widget-area .widget {
	    padding: 0;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
	.language-navigation {
	}

	.menus-container,
	#feedback-area {
	    display: block;
	 }
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		/* background-color: #78a22f; */
	}
	body .site {
		padding: 0 15px;
		margin-top: 40px;
		margin-top: 2.5rem;
		/* margin-bottom: 40px;
		margin-bottom: 2.5rem; */
	}

	body.full-width .site-content {
	    width: 930px;
	    width: 66.4286rem;
	}
        body .full-site {
            padding-left:0px;
            padding-right:0px; 
        }
	#secondary {
	    float: right;
	}
}


/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}

/* FarmingFirst Rotator widget */

#ffr_container {
    /* width: 670px; */
    height: 465px;
    /* overflow: hidden; */
    position: relative;
    text-align: center;
    background: #869F24;
}

.ffr_placecontainer {
    position: relative; 
}

.ffr_place {
    position: absolute;
    top: 0;
    left: 0;
}

#ffr_control {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 10px;
}

div.ffr_tncontainer {
    float: left;
    position: relative;
    left: 0;
    overflow: hidden;
    width: 540px; /* 5 images @ 100px + 4 x 10px gaps */
    white-space: nowrap;
    margin: 0 1px;
}

#ffr_tns {
    position: relative;
    left: 0;
}

.ffr_img img {
    width: 100%;
    height: auto;
}

img.ffr_fb {
    width: 100px;
    height: auto;
    margin-right: 10px;
    cursor: pointer;
}

@media screen and (max-width: 717px) {
    img.ffr_fb {
	width: 70px;
    }
}

.ffr_step {
    float: left;
    width: 16px;
    height: 45px;
    margin: 8px 0 0 0;
}
#ffr_stepl {
    background: transparent url(images/la-white-short.png) top left no-repeat;
}
#ffr_stepr {
    background: transparent url(images/ra-white-short.png) top left no-repeat;
}


#ffr_intro {
    padding: 3px 0;
    margin: 0;
    position: absolute;
    top: 0;
    color: #7d9008;
    font-weight: bold;
}
div.ffr_text {
    background-color: #7d9008;
    filter: alpha(opacity=70);
    zoom: 1;
    background: rgba(125,144,8,0.7);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 50px;
    /* margin: 330px 0 0 0; */
}
div.ffr_h1 {
    font-size: 22px;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 5px 5px 3px 5px;
}
div.ffr_h2 {
    font-size: 14px;
    font-size: 1rem;
    font-weight: bold;
    padding: 3px 5px 3px 5px;
}
div.ffr_h1 a,
div.ffr_h2 a 
{
    color: white !important;
    font-weight: bold;
    text-decoration: none;
}
div.ffr_h1 a:hover,
div.ffr_h2 a:hover 
{
    text-decoration: underline;
    color: white !important;
}

div.ffe_events, 
div.ffn_news {
    width: 100%;
    padding-bottom: 10px;
}
div.ffe_events h2,
div.ffn_news h2,
div.ffrd_related h2 {

}
div.ffe_events table,
div.ffn_news table,
div.ffrd_related table {
    width: 100%;
    padding-bottom: 30px;
}
div.ffe_events a,
div.ffn_news a,
div.ffrd_related a {
    color: #7d9008;
    font-weight: bold;
    font-size: 15px;
    line-height: 1.1;
}
div.ffe_events a:hover,
div.ffn_news a:hover,
div.ffrd_related a:hover {
    color: #555555;
}
div.ffn_excerpt {
    margin: 5px 0 0 0;
    line-height: 1.2;
    font-size: 13px;
    font-size: 0.928571429rem;
}
div.ffe_events td,
div.ffn_news td {
    vertical-align: top;
    padding-top: 15px;
    padding-left: 10px;
    font-size: 14px;
}
div.ffe_events .ffe_date,
div.ffn_news .ffn_image {
    padding-left: 0;
}
div.ffe_events td.ffe_date {
    color: black;
    text-align: center;
}
div.ffe_events .ffe_month {
    font-size: 18px;
    font-weight: bold;
}
div.ffe_events .ffe_day {
    font-size: 26px;
    font-weight: bold;
}
div.ffe_events .ffe_title,
div.ffn_news .ffn_title,
.ffrd_title {
    font-size: 10px;
}
div.ffe_events .ffe_ra,
div.ffn_news .ffn_ra {
    width: 11px;
    height: 45px;
    background: url(images/ra-short.png) 0 0 no-repeat;
}
td.ffn_image {
    width: 100px;
}
td.ffn_image img {
    width: 100px;
}

.home-item2 {
    background-color: #e3ebcd !important;
    padding: 0 10px 5px 10px !important;
}
.home-item2 .ffn_news_table tr + tr,
.home-item3 .ffn_news_table tr + tr {
    border-top: 1px dashed #7d9008;    
}

.home-item2 .ffn_news_table tr.ffn_sharing_row,
.home-item3 .ffn_news_table tr.ffn_sharing_row {
    border-top: 0px;    
} 

div.ffn_news .ffn_sharing_row td {
    padding: 0;
}
.home-item2 .ffn_news_table td,
.home-item3 .ffn_news_table td {
    padding-bottom: 5px;
}
@media screen and (max-width: 959px) {
  .home-item3, .home-item4 {
    padding-bottom: 5px !important;
  }
}

div.ffa-about {
    position: relative; /* for language menu */
    /* border: 5px solid #B2D80F; */
    width: 100%;
    background: #869F24;
    /*
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    */
    padding: 20px 0 0 0;
    margin-bottom: 0;
}
@media screen and (max-width: 717px) {
    div.ffa-about {
	padding-top: 50px;
    }
}
div.ffa-about .ffa-header {
    text-transform: uppercase;
    margin: 0 20px 30px 20px;
    font-weight: bold;
}
div.ffa-about a {
    color: #B2D80F;
}
div.ffa-about .ffa-header a {
    color: white;
}
div.ffa-about .ffa-section {
    float: left;
    width: 161px;
    padding: 0 35px 0 35px;
    text-align: center;
    border-right: 1px solid #B2D80F;
    min-height: 100px;
}
div.ffa-about .ffa-section:last-child {
    border-right: none;
}
div.ffa-about .language-navigation li a {
    color: white !important;
}
div.ffa-about .ffa-num {
    font-size: 20px;
    font-weight: bold;
}
div.ffa-about .ffa-label {
    margin-top: 3px;
    font-weight: bold;
}
div.ffa-about .ffa-html {
    margin-top: 10px;
    line-height: 1.3;
}
div.ffa-about .ffa-footer {
    clear: both;
    text-align: center;
    padding: 20px 20px 20px 20px;
}

@media screen and (max-width: 959px) {
   div.ffa-about .ffa-section {
       width: 40%;
   }
}
@media screen and (max-width: 717px) {
   div.ffa-about .ffa-section {
       width: 80%;
       border-right: none;       
       padding: 0 9%;
   }
}

div.ffe_more_events,
div.ffn_more_news,
div.ffrd_more_related {
    width: 100%;
    text-align: center;
    color: #869F24;
    font-size: 13px;
    background: url(images/da-medium.png) center bottom no-repeat;
    padding-bottom: 12px;
}
div.ffe_more_events a,
div.ffn_more_news a,
div.ffs_more_share {
    color: #869F24;
}
div.ffs_more_share {
    color: #B2D80F;
    width: 18px;
    background: url(images/share-more.png) right center no-repeat;
}

div.ffrd_related td {
    vertical-align: top;
    padding-top: 10px;
}
.ffrd_related_table {
    margin: 0 0 10px 0;
}
.ffrd_content {
    width: 135px;
}
.ffrd_title {
    margin: 5px 0;
}
.ffn_placeholder,
.ffrd_placeholder {
    width: 100%;
    height: 75px;
    background: url(/wordpress/wp-content/uploads/2012/05/Screen-Shot-2012-05-25-at-15.00.581-150x92.png) center center no-repeat;
    background-size: auto 100%;
    background-color: #fff;
}
.ffrd_more_related {
    margin-bottom: 10px;
}
.ffrd_related_popout {
    display: none; /* changed when popped out */
    position: relative;

    background: #E5E3D1;
    border: 4px solid silver;
    -moz-box-shadow: 10px 10px 5px #888;
    -webkit-box-shadow: 10px 10px 5px #888;
    box-shadow: 10px 10px 5px #888;
    padding: 15px;
    z-index: 10000;
}
.ffrd_related_popout .ffrd_related_close_button {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}
.ffrd_related_popout_item {
    display: inline-block;
    vertical-align: top;
    margin-right: 20px;
    margin-bottom: 15px;
}
.ffrd_related_popout .ffrd_content a {
    color: black;
    font-size: 13px;
}
.ffrd_video img {
    width: 135px;
}

.template-front-page .widget-area .widget_links {
    margin-bottom: 0;
}
.template-front-page .widget-area .widget_links ul {
}
.template-front-page .widget-area .widget_links li:before {
    content: "●  ";
}
.template-front-page .widget-area .widget_links li {
    line-height: 15px !important;
    font-size: 13px;
    display: inline;   
    white-space: nowrap;
}
.template-front-page .widget-area .widget_text div {
    font-size: 10px;
}
.template-front-page .widget-area .widget_text a {
    color: #869F24;
}
.template-front-page .widget-area .widget_text a:hover {
    color: #555555;
}

#colophon {
    display: none;
}

.bqq {
    position: absolute;
    top: -14px;
    top: -1rem;
    font-family: Georgia, serif;
    font-size: 44px;
    font-size: 3.1428rem;
}
.bql {
    left: 0;
}
.bqr {
    right: 5px;
    right: 0.3571rem;
}

.ff4_panel input[type=text],
.ff4_panel textarea {
    width: 95%;
}
.ff4_panel textarea {
    height: 200px;
}

.ff4_panel table,
.ff4_panel td {
    border: 0;
}

.ff4_form_error {
    font-weight: bold;
    color: white;
    background-color: tomato;
    padding: 10px;
}


.ffposteventdate {
    float: left;
    color: black;
    margin : 5px 20px 10px 0;
    padding: 5px;
    border: 1px solid black;
    line-height: 1;
    text-align: center;
}
.ffposteventdate span {
    display: block;
}
.ffposteventday {
    font-size: 30px;
    font-weight: bold;
}
.ffposteventmonth,
.ffposteventyear {
    font-size: 18px;
    font-weight: bold;
}

.ffs_share {
    min-height: 60px;
    position: relative;

}
.ffs_heading { 
    margin: 0 0 0 0;
    text-align: right;
    color: #B2D80F;
    font-size: 14px;
    font-weight: normal;
}
.ffs_items {
    float: right;
    margin: 5px 34px 0 0;
}
.ffs_item {
    float: left;
    height: 25px;
    width: 100px;
    overflow: hidden;
}

.ff-sharing-wa {
    position: absolute;
    top: 0;
    right: 0;
}
@media screen and (max-width: 959px) {
  .ff-sharing-wa {
    position: relative;
    float: right;
  }
  .ff-sharing-clear {
      clear: right;
  }
  .ff-sharing-wa aside {
      float: left;
  }
}


.ffs_more_share {
    height: 45px;
    text-align: right;
    position: absolute;
    top: 12px;
    right: 0;
    padding-right: 15px;
    cursor: pointer;
}
.ffs_more_share div {
    padding: 2px 4px 0 0;
    font-size: 13px;
    line-height: 14px;
}
.ffs_more_end {
    clear: both;
}
.atm-i {
    display: none !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
a.addthis_button_compact {
    display: none !important;
}

table.ff-sups li {
    list-style: none;
    margin: 0 5px 5px 0;
}

p.readmore {
    float: right;
    padding: 10px 20px;
    margin-top: 10px;
    text-align: right;
    text-transform: uppercase;

    background-color: #78a22f;
	color: #fff;
}

p.readmore a { color: #fff; }

/* newsletter sign up */

.ffnls_newsletter {
    width: 200px;
    text-align: right;
}

.ffnls_text {
    color: #869F24;
    font-size: 14px;
    font-weight: bold;
}

.ffnls_inputs {
    margin-top: 5px;
}

#ffnls_email {
    background-color: #CCCCCC;
    width: 146px;
    height: 29px;
    font-size: 14px;
    font-style: italic;
    border: 0;
    padding: 2px 4px 2px 4px;
    position: relative;
    top: -10px; /* why?? */
}

#ffnls_go {
}

/* pledge counter (container only) */

iframe.pledge_counter {
    margin: 0 0 0 35px;
    width: 218px;
    height: 251px;
    border: 0;
}

#secondary .ffcn_img {
    width: 100%;
    text-align: center;
}

#secondary .ffcn_img img.wp-post-image {
    width: 200px;
    margin: 0 0 10px 0;
}

.ffcn_block h2 {
    margin: 0 0 10px 0;
}

/*ff-home-extra*/

div.ff-home-extra {
    float: left;
    padding-top: 10px;
    padding-right: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
    width: 180px;
}

@media screen and (max-width: 350px) {
    div.ff-home-extra {
	width: 90%;
	padding: 0;
    }    
}

div.ff-map-text {
    float: left;
    width: 50%;
}

@media screen and (max-width: 718px) {
    div.ff-map-text {
	float: none;
	width: 100%
    }    
}

.twitter-timeline {
    width: 100%;
}

.ffimagegrid {
    line-height: 0;
    background-color: #e3ebcd;
    text-align: center;
}

.ffimagegrid img {
    padding: 10px;
    border-bottom: 1px dashed #7d9008;   
}


/* SelectionSharer */
#selectionSharerPopover-inner a.linkedin,
#selectionSharerPopunder-inner a.linkedin,
#selectionSharerPopover-inner a.email,
#selectionSharerPopunder-inner a.email {
	display: none;
}