﻿<!DOCTYPE html>
<!--[if IE 6]>
<html id="ie6" lang="en-US">
<![endif]-->
<!--[if IE 7]>
<html id="ie7" lang="en-US">
<![endif]-->
<!--[if IE 8]>
<html id="ie8" lang="en-US">
<![endif]-->
<!--[if !(IE 6) | !(IE 7) | !(IE 8)  ]><!-->
<html lang="en-US">
<!--<![endif]-->
<head>
	<meta charset="UTF-8" />
			
	
	<link rel="pingback" href="http://mollygreen.com/xmlrpc.php" />

		<!--[if lt IE 9]>
	<script src="http://mollygreen.com/wp-content/themes/Divi/js/html5.js" type="text/javascript"></script>
	<![endif]-->

	<script type="text/javascript">
		document.documentElement.className = 'js';
	</script>

	<title>Welcome Home | Molly Green</title>
<link rel="alternate" type="application/rss+xml" title="Molly Green &raquo; Feed" href="http://mollygreen.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Molly Green &raquo; Comments Feed" href="http://mollygreen.com/comments/feed/" />
		<script type="text/javascript">
			window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png","source":{"wpemoji":"http:\/\/mollygreen.com\/wp-includes\/js\/wp-emoji.js?ver=4.5","twemoji":"http:\/\/mollygreen.com\/wp-includes\/js\/twemoji.js?ver=4.5"}};
			( function( window, document, settings ) {
	var src, ready, ii, tests;

	/**
	 * Detect if the browser supports rendering emoji or flag emoji. Flag emoji are a single glyph
	 * made of two characters, so some browsers (notably, Firefox OS X) don't support them.
	 *
	 * @since 4.2.0
	 *
	 * @param type {String} Whether to test for support of "simple", "flag", "diversity" or "unicode8" emoji.
	 * @return {Boolean} True if the browser can render emoji, false if it cannot.
	 */
	function browserSupportsEmoji( type ) {
		var canvas = document.createElement( 'canvas' ),
			context = canvas.getContext && canvas.getContext( '2d' ),
			stringFromCharCode = String.fromCharCode,
			tonedata, tone, tone2;

		if ( ! context || ! context.fillText ) {
			return false;
		}

		/*
		 * Chrome on OS X added native emoji rendering in M41. Unfortunately,
		 * it doesn't work when the font is bolder than 500 weight. So, we
		 * check for bold rendering support to avoid invisible emoji in Chrome.
		 */
		context.textBaseline = 'top';
		context.font = '600 32px Arial';

		switch ( type ) {
			case 'flag':
				/*
				 * This works because the image will be one of three things:
				 * - Two empty squares, if the browser doesn't render emoji
				 * - Two squares with 'A' and 'U' in them, if the browser doesn't render flag emoji
				 * - The Australian flag
				 *
				 * The first two will encode to small images (1-2KB data URLs), the third will encode
				 * to a larger image (4-5KB data URL).
				 */
				context.fillText( stringFromCharCode( 55356, 56806, 55356, 56826 ), 0, 0 );
				return canvas.toDataURL().length > 3000;
			case 'diversity':
				/*
				 * This tests if the browser supports the Emoji Diversity specification, by rendering an
				 * emoji with no skin tone specified (in this case, Santa). It then adds a skin tone, and
				 * compares if the emoji rendering has changed.
				 */
				context.fillText( stringFromCharCode( 55356, 57221 ), 0, 0 );
				tonedata = context.getImageData( 16, 16, 1, 1 ).data;

				context.fillText( stringFromCharCode( 55356, 57221, 55356, 57343 ), 0, 0 );
				// Chrome has issues comparing arrays, and Safari has issues converting arrays to strings.
				// So, we create our own string and compare that, instead.
				tonedata = context.getImageData( 16, 16, 1, 1 ).data;
				tone2 = tonedata[0] + ',' + tonedata[1] + ',' + tonedata[2] + ',' + tonedata[3];

				return tone !== tone2;
			case 'simple':
				/*
				 * This creates a smiling emoji, and checks to see if there is any image data in the
				 * center pixel. In browsers that don't support emoji, the character will be rendered
				 * as an empty square, so the center pixel will be blank.
				 */
				context.fillText( stringFromCharCode( 55357, 56835 ), 0, 0 );
				return context.getImageData( 16, 16, 1, 1 ).data[0] !== 0;
			case 'unicode8':
				/*
				 * To check for Unicode 8 support, let's try rendering the most important advancement
				 * that the Unicode Consortium have made in years: the burrito.
				 */
				context.fillText( stringFromCharCode( 55356, 57135 ), 0, 0 );
				return context.getImageData( 16, 16, 1, 1 ).data[0] !== 0;
		}

		return false;
	}

	function addScript( src ) {
		var script = document.createElement( 'script' );

		script.src = src;
		script.type = 'text/javascript';
		document.getElementsByTagName( 'head' )[0].appendChild( script );
	}

	tests = Array( 'simple', 'flag', 'unicode8', 'diversity' );

	settings.supports = {
		everything: true,
		everythingExceptFlag: true
	};

	for( ii = 0; ii < tests.length; ii++ ) {
		settings.supports[ tests[ ii ] ] = browserSupportsEmoji( tests[ ii ] );

		settings.supports.everything = settings.supports.everything && settings.supports[ tests[ ii ] ];

		if ( 'flag' !== tests[ ii ] ) {
			settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && settings.supports[ tests[ ii ] ];
		}
	}

	settings.supports.everythingExceptFlag = settings.supports.everythingExceptFlag && ! settings.supports.flag;

	settings.DOMReady = false;
	settings.readyCallback = function() {
		settings.DOMReady = true;
	};

	if ( ! settings.supports.everything ) {
		ready = function() {
			settings.readyCallback();
		};

		if ( document.addEventListener ) {
			document.addEventListener( 'DOMContentLoaded', ready, false );
			window.addEventListener( 'load', ready, false );
		} else {
			window.attachEvent( 'onload', ready );
			document.attachEvent( 'onreadystatechange', function() {
				if ( 'complete' === document.readyState ) {
					settings.readyCallback();
				}
			} );
		}

		src = settings.source || {};

		if ( src.concatemoji ) {
			addScript( src.concatemoji );
		} else if ( src.wpemoji && src.twemoji ) {
			addScript( src.twemoji );
			addScript( src.wpemoji );
		}
	}

} )( window, document, window._wpemojiSettings );
		</script>
		<meta content="Divi Child Theme v.1.0" name="generator"/><style type="text/css">
img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 .07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}
</style>
<link rel='stylesheet' id='ac-style-css'  href='http://mollygreen.com/wp-content/plugins/advanced-categories-widget/css/widget.css?ver=4.5' type='text/css' media='all' />
<link rel='stylesheet' id='bxslider-css-css'  href='http://mollygreen.com/wp-content/plugins/kiwi-logo-carousel/third-party/jquery.bxslider/jquery.bxslider.css?ver=4.5' type='text/css' media='' />
<link rel='stylesheet' id='kiwi-logo-carousel-styles-css'  href='http://mollygreen.com/wp-content/plugins/kiwi-logo-carousel/custom-styles.css?ver=4.5' type='text/css' media='' />
<link rel='stylesheet' id='vtprd-front-end-style-css'  href='http://mollygreen.com/wp-content/plugins/pricing-deals-for-woocommerce/core/css/vtprd-front-end-min.css?ver=4.5' type='text/css' media='all' />
<link rel='stylesheet' id='bbp-default-css'  href='http://mollygreen.com/wp-content/plugins/bbpress/templates/default/css/bbpress.css?ver=2.5.8-5815' type='text/css' media='screen' />
<link rel='stylesheet' id='bp-legacy-css-css'  href='http://mollygreen.com/wp-content/plugins/buddypress/bp-templates/bp-legacy/css/buddypress.css?ver=2.5.2' type='text/css' media='screen' />
<link rel='stylesheet' id='rs-plugin-settings-css'  href='http://mollygreen.com/wp-content/plugins/revslider/public/assets/css/settings.css?ver=5.2.4.1' type='text/css' media='all' />
<style id='rs-plugin-settings-inline-css' type='text/css'>
.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}.tp-caption a{color:#ff7302;text-shadow:none;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;-ms-transition:all 0.2s ease-out}.tp-caption a:hover{color:#ffa902}
</style>
<link rel='stylesheet' id='follow-up-emails-css'  href='http://mollygreen.com/wp-content/plugins/woocommerce-follow-up-emails/templates/followups.css?ver=4.4.12' type='text/css' media='all' />
<link rel='stylesheet' id='woocommerce-layout-css'  href='//mollygreen.com/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=2.5.5' type='text/css' media='all' />
<link rel='stylesheet' id='woocommerce-smallscreen-css'  href='//mollygreen.com/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=2.5.5' type='text/css' media='only screen and (max-width: 768px)' />
<link rel='stylesheet' id='woocommerce-general-css'  href='//mollygreen.com/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=2.5.5' type='text/css' media='all' />
<link rel='stylesheet' id='ub_adminbar_general_styles-css'  href='http://mollygreen.com/wp-content/plugins/ultimate-branding/ultimate-branding-files/modules/custom-admin-bar-files/css/general.css?ver=1.0' type='text/css' media='all' />
<link rel='stylesheet' id='divi-fonts-css'  href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&#038;subset=latin,latin-ext' type='text/css' media='all' />
<link rel='stylesheet' id='et-gf-pt-sans-css'  href='http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700,700italic&#038;subset=latin,latin-ext,cyrillic' type='text/css' media='all' />
<link rel='stylesheet' id='divi-style-css'  href='http://mollygreen.com/wp-content/themes/Divi-child/style.css?ver=2.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='et_lb_modules-css'  href='http://mollygreen.com/wp-content/plugins/elegantbuilder/style.css?ver=2.4' type='text/css' media='all' />
<link rel='stylesheet' id='et-shortcodes-css-css'  href='http://mollygreen.com/wp-content/themes/Divi/epanel/shortcodes/css/shortcodes.css?ver=2.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='et-shortcodes-responsive-css-css'  href='http://mollygreen.com/wp-content/themes/Divi/epanel/shortcodes/css/shortcodes_responsive.css?ver=2.7.3' type='text/css' media='all' />
<link rel='stylesheet' id='magnific-popup-css'  href='http://mollygreen.com/wp-content/themes/Divi/includes/builder/styles/magnific_popup.css?ver=2.7.3' type='text/css' media='all' />
<script type='text/javascript' src='http://mollygreen.com/wp-includes/js/jquery/jquery.js?ver=1.12.3'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-includes/js/jquery/jquery-migrate.js?ver=1.4.0'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var ac = {"nonce":"e5669721ab","action":"ac_load_utility","ajaxurl":"http:\/\/mollygreen.com\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/advanced-categories-widget/js/jquery.widget.js?ver=2.4.0'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var BP_Confirm = {"are_you_sure":"Are you sure?"};
/* ]]> */
</script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/buddypress/bp-core/js/confirm.js?ver=2.5.2'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/buddypress/bp-core/js/widget-members.js?ver=2.5.2'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/buddypress/bp-core/js/jquery-query.js?ver=2.5.2'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/buddypress/bp-core/js/jquery-cookie.js?ver=2.5.2'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/buddypress/bp-core/js/jquery-scroll-to.js?ver=2.5.2'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var BP_DTheme = {"accepted":"Accepted","close":"Close","comments":"comments","leave_group_confirm":"Are you sure you want to leave this group?","mark_as_fav":"Favorite","my_favs":"My Favorites","rejected":"Rejected","remove_fav":"Remove Favorite","show_all":"Show all","show_all_comments":"Show all comments for this thread","show_x_comments":"Show all %d comments","unsaved_changes":"Your profile has unsaved changes. If you leave the page, the changes will be lost.","view":"View"};
/* ]]> */
</script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/buddypress/bp-templates/bp-legacy/js/buddypress.js?ver=2.5.2'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/revslider/public/assets/js/jquery.themepunch.tools.min.js?ver=5.2.4.1'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/revslider/public/assets/js/jquery.themepunch.revolution.min.js?ver=5.2.4.1'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var FUE = {"ajaxurl":"http:\/\/mollygreen.com\/wp-admin\/admin-ajax.php","ajax_loader":"http:\/\/mollygreen.com\/wp-content\/plugins\/woocommerce-follow-up-emails\/templates\/images\/ajax-loader.gif"};
/* ]]> */
</script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/woocommerce-follow-up-emails/templates/js/fue-account-subscriptions.js?ver=4.4.12'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var affwp_scripts = {"ajaxurl":"http:\/\/mollygreen.com\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='//mollygreen.com/wp-content/plugins/woocommerce/assets/js/jquery-cookie/jquery.cookie.js?ver=1.4.1'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/affiliate-wp/assets/js/tracking.js?ver=1.7.16'></script>
<script type='text/javascript' data-cfasync="false" id="omapi-script" src='//a.optnmnstr.com/app/js/api.min.js?ver=1.1.4.5'></script>
<link rel='https://api.w.org/' href='http://mollygreen.com/wp-json/' />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://mollygreen.com/xmlrpc.php?rsd" />
<link rel="wlwmanifest" type="application/wlwmanifest+xml" href="http://mollygreen.com/wp-includes/wlwmanifest.xml" /> 
<meta name="generator" content="Molly Green" />

<link rel='shortlink' href='http://mollygreen.com/' />
<link rel="alternate" type="application/json+oembed" href="http://mollygreen.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fmollygreen.com%2F" />
<link rel="alternate" type="text/xml+oembed" href="http://mollygreen.com/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fmollygreen.com%2F&#038;format=xml" />
	<link rel='canonical' href='http://mollygreen.com/' />

<!-- This site is using AdRotate v3.20.2 Professional to display their advertisements - https://ajdg.solutions/products/adrotate-for-wordpress/ -->
<!-- AdRotate CSS -->
<style type="text/css" media="screen">
	.g { margin:0px; padding:0px; overflow:hidden; line-height:1; zoom:1; }
	.g img { height:auto; }
	.g-col { position:relative; float:left; }
	.g-col:first-child { margin-left: 0; }
	.g-col:last-child { margin-right: 0; }
	.g-1 { width:100%; max-width:700px; height:100%; max-height:100px; margin: 0 auto; }
	.g-2 { width:100%; max-width:700px; height:100%; max-height:100px; margin: 0 auto; }
	.g-3 { width:100%; max-width:700px; height:100%; max-height:100px; margin: 0 auto; }
	.g-4 { width:100%; max-width:700px; height:100%; max-height:100px; margin: 0 auto; }
	.g-5 { width:100%; max-width:728px; height:100%; max-height:100px; margin: 0 auto; }
	@media only screen and (max-width: 480px) {
		.g-col, .g-dyn, .g-single { width:100%; margin-left:0; margin-right:0; }
	}
</style>
<!-- /AdRotate CSS -->


	<script type="text/javascript">var ajaxurl = 'http://mollygreen.com/wp-admin/admin-ajax.php';</script>

		<script type="text/javascript">
		var AFFWP = AFFWP || {};
		AFFWP.referral_var = 'ref';
		AFFWP.expiration = 7;
		AFFWP.referral_credit_last = 0;
		</script>
		<style>.affwp-leaderboard p{font-size:80%;color:#999;}</style>
	<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />		<style id="theme-customizer-css">
							body { color: #000000; }
											.woocommerce #respond input#submit, .woocommerce-page #respond input#submit, .woocommerce #content input.button, .woocommerce-page #content input.button, .woocommerce-message, .woocommerce-error, .woocommerce-info { background: #668d3c !important; }
			#et_search_icon:hover, .mobile_menu_bar:before, .mobile_menu_bar:after, .et_toggle_slide_menu:after, .et-social-icon a:hover, .et_pb_sum, .et_pb_pricing li a, .et_pb_pricing_table_button, .et_overlay:before, .entry-summary p.price ins, .woocommerce div.product span.price, .woocommerce-page div.product span.price, .woocommerce #content div.product span.price, .woocommerce-page #content div.product span.price, .woocommerce div.product p.price, .woocommerce-page div.product p.price, .woocommerce #content div.product p.price, .woocommerce-page #content div.product p.price, .et_pb_member_social_links a:hover, .woocommerce .star-rating span:before, .woocommerce-page .star-rating span:before, .et_pb_widget li a:hover, .et_pb_filterable_portfolio .et_pb_portfolio_filters li a.active, .et_pb_filterable_portfolio .et_pb_portofolio_pagination ul li a.active, .et_pb_gallery .et_pb_gallery_pagination ul li a.active, .wp-pagenavi span.current, .wp-pagenavi a:hover, .nav-single a, .posted_in a { color: #668d3c; }
			.et_pb_contact_submit, .et_password_protected_form .et_submit_button, .et_pb_bg_layout_light .et_pb_newsletter_button, .comment-reply-link, .form-submit input, .et_pb_bg_layout_light .et_pb_promo_button, .et_pb_bg_layout_light .et_pb_more_button, .woocommerce a.button.alt, .woocommerce-page a.button.alt, .woocommerce button.button.alt, .woocommerce-page button.button.alt, .woocommerce input.button.alt, .woocommerce-page input.button.alt, .woocommerce #respond input#submit.alt, .woocommerce-page #respond input#submit.alt, .woocommerce #content input.button.alt, .woocommerce-page #content input.button.alt, .woocommerce a.button, .woocommerce-page a.button, .woocommerce button.button, .woocommerce-page button.button, .woocommerce input.button, .woocommerce-page input.button { color: #668d3c; }
			.footer-widget h4 { color: #668d3c; }
			.et-search-form, .nav li ul, .et_mobile_menu, .footer-widget li:before, .et_pb_pricing li:before, blockquote { border-color: #668d3c; }
			.et_pb_counter_amount, .et_pb_featured_table .et_pb_pricing_heading, .et_quote_content, .et_link_content, .et_audio_content, .et_pb_post_slider.et_pb_bg_layout_dark, .et_slide_in_menu_container { background-color: #668d3c; }
									a { color: #83929f; }
													#top-header, #et-secondary-nav li ul { background-color: #bdd09f; }
								#top-header, #top-header a { color: rgba(0,0,0,0.7); }
									.et_header_style_centered .mobile_nav .select_page, .et_header_style_split .mobile_nav .select_page, .et_nav_text_color_light #top-menu > li > a, .et_nav_text_color_dark #top-menu > li > a, #top-menu a, .et_mobile_menu li a, .et_nav_text_color_light .et_mobile_menu li a, .et_nav_text_color_dark .et_mobile_menu li a, #et_search_icon:before, .et_search_form_container input, span.et_close_search_field:after, #et-top-navigation .et-cart-info { color: #666666; }
			.et_search_form_container input::-moz-placeholder { color: #666666; }
			.et_search_form_container input::-webkit-input-placeholder { color: #666666; }
			.et_search_form_container input:-ms-input-placeholder { color: #666666; }
								
		
					#top-menu li.current-menu-ancestor > a, #top-menu li.current-menu-item > a,
			.et_color_scheme_red #top-menu li.current-menu-ancestor > a, .et_color_scheme_red #top-menu li.current-menu-item > a,
			.et_color_scheme_pink #top-menu li.current-menu-ancestor > a, .et_color_scheme_pink #top-menu li.current-menu-item > a,
			.et_color_scheme_orange #top-menu li.current-menu-ancestor > a, .et_color_scheme_orange #top-menu li.current-menu-item > a,
			.et_color_scheme_green #top-menu li.current-menu-ancestor > a, .et_color_scheme_green #top-menu li.current-menu-item > a { color: #668d3c; }
							#main-footer { background-color: #613318; }
											#main-footer .footer-widget h4 { color: #668d3c; }
							.footer-widget li:before { border-color: #668d3c; }
																
		
																														
		@media only screen and ( min-width: 981px ) {
																																								.et-fixed-header#top-header, .et-fixed-header#top-header #et-secondary-nav li ul { background-color: #bdd09f; }
																.et-fixed-header #top-menu a, .et-fixed-header #et_search_icon:before, .et-fixed-header #et_top_search .et-search-form input, .et-fixed-header .et_search_form_container input, .et-fixed-header .et_close_search_field:after, .et-fixed-header #et-top-navigation .et-cart-info { color: #666666 !important; }
				.et-fixed-header .et_search_form_container input::-moz-placeholder { color: #666666 !important; }
				.et-fixed-header .et_search_form_container input::-webkit-input-placeholder { color: #666666 !important; }
				.et-fixed-header .et_search_form_container input:-ms-input-placeholder { color: #666666 !important; }
										.et-fixed-header #top-menu li.current-menu-ancestor > a,
				.et-fixed-header #top-menu li.current-menu-item > a { color: #668d3c !important; }
										.et-fixed-header#top-header a { color: rgba(0,0,0,0.7); }
			
					}
		@media only screen and ( min-width: 1350px) {
			.et_pb_row { padding: 27px 0; }
			.et_pb_section { padding: 54px 0; }
			.single.et_pb_pagebuilder_layout.et_full_width_page .et_post_meta_wrapper { padding-top: 81px; }
			.et_pb_section.et_pb_section_first { padding-top: inherit; }
			.et_pb_fullwidth_section { padding: 0; }
		}
		@media only screen and ( max-width: 980px ) {
																				}
		@media only screen and ( max-width: 767px ) {
														}
	</style>

					<style class="et_heading_font">
				h1, h2, h3, h4, h5, h6 {
					font-family: 'PT Sans', Helvetica, Arial, Lucida, sans-serif;				}
				</style>
			
	
	<style id="module-customizer-css">
			</style>

	<link rel="shortcut icon" href="https://mollygreen.com/wp-content/uploads/2016/03/Molly-cameo-Green20px-1.png" /><meta name="generator" content="Powered by Slider Revolution 5.2.4.1 - responsive, Mobile-Friendly Slider Plugin for WordPress with comfortable drag and drop interface." />
<meta name="p:domain_verify" content="503a09b9a1ff9f42f956c0025aa8f7dd"/>
<!--Plugin WP Missed Schedule Active - Secured with Genuine Authenticity KeyTag-->

<!-- This site is patched against a big problem not solved since WordPress 2.5 -->

<style type="text/css" id="et-custom-css">
.home #breadcrumbs { display: none; }
.et_pb_section { padding: 0; }
.et_pb_bg_layout_light .et_pb_more_button { color: black!important; }
.et_pb_blog_grid .et_pb_post { min-height: 405px; }

/*** custom theme edits ***/
#main-content .container:before { width:0; }
.generic-button.friendship-button.not_friends { padding:0 0 7px; }
.bpfb_form_container { background-color:#BDD09F; }
.et_pb_fullwidth_header h1 { font-size: 30px; }
.et_pb_fullwidth_header p { font-size: 20px; }

/*** advertizing ***/
/* container */
#kermit {
	padding: 0;
}
#kermitForm {
	padding: 50px;
}
.kermitContainer {
	padding: 0 auto;
}
/* content */
.kermitFrame {
	background: rgba(0,0,0,0.4);
}
.kermitFrame h1,
.kermitFrame h3,
.kermitFrame p {
	padding: 0 50px;
}
/* form */
.kermitForm {
	background: rgba(0,0,0,0.4);
}
.kermitForm h1,
.kermitForm h3,
.kermitForm p {
	color: #fff;
}
.kermitForm p > input {
	padding: 0;
}

/* mollydivichildtheme */

/* Footer customizations */
.footer-widget h4 {
	color: #BDD09F!important;
}
.footer-widget li:before {
	border-color: #BDD09F!important;
}

#left-area ul.products, .et_post_gallery {
    width: 50%;
}

.et_pb_post a img {
    max-width: 640px;
}

#sidebar {
    float: right;
    width: 20%;
}

.et_right_sidebar.woocommerce div.product div.images, .et_right_sidebar.woocommerce-page div.product div.images {
    width: 211px !important;
}
.woocommerce div.product div.images img, .woocommerce #content div.product div.images img, .woocommerce-page div.product div.images img, .woocommerce-page #content div.product div.images img {  
    width:auto;    
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    width: 45%;
}

.magad {
    width: 1286px;
    margin: 0px 0px 20px -80px;
    position: relative;
}

.post ol {
    padding-left: 20px;
     }

.page-id-17024 a.h2-link {
    font-size: 20px;
    color: black!important;
    font-weight: bold;
}

.product {
    word-wrap: normal;
}

.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    width: 65%;
}

.woocommerce div.product form.cart table {
   width: 100%;
}

table.cart th, #main-content table.cart th, table.cart td, #main-content table.cart td, table.cart tr, #main-content table.cart tr, #content-area table tr, #content-area table td, #content-area table th {
    max-width: none;
}
</style><!-- WooCommerce Google Analytics Integration -->
		<script type='text/javascript'>
			var gaProperty = 'UA-55121126-1';
			var disableStr = 'ga-disable-' + gaProperty;
			if ( document.cookie.indexOf( disableStr + '=true' ) > -1 ) {
				window[disableStr] = true;
			}
			function gaOptout() {
				document.cookie = disableStr + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/';
				window[disableStr] = true;
			}
		</script>
		<script type='text/javascript'>(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
		(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
		m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
		})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

		ga( 'create', 'UA-55121126-1', 'auto' );ga( 'set', 'anonymizeIp', true );
		ga( 'set', 'dimension1', 'no' );
ga( 'require', 'ecommerce', 'ecommerce.js');</script>
		<!-- /WooCommerce Google Analytics Integration --></head>
<body class="home-page home singular page page-id-8982 page-template-default et_pb_button_helper_class et_fixed_nav et_show_nav et_cover_background et_secondary_nav_enabled et_secondary_nav_two_panels et_pb_gutter et_pb_gutters3 et_primary_nav_dropdown_animation_fade et_secondary_nav_dropdown_animation_fade et_pb_footer_columns4 et_header_style_left et_pb_pagebuilder_layout et_right_sidebar unknown no-js">
	<div id="page-container">

			<div id="top-header">
			<div class="container clearfix">

			
				<div id="et-info">
									<span id="et-info-phone">1.888.718.HOME</span>
				
				
				<ul class="et-social-icons">

	<li class="et-social-icon et-social-facebook">
		<a href="https://www.facebook.com/pages/Molly-Green/675044465909805" class="icon">
			<span>Facebook</span>
		</a>
	</li>
	<li class="et-social-icon et-social-twitter">
		<a href="https://twitter.com/MollyGreenMag" class="icon">
			<span>Twitter</span>
		</a>
	</li>
	<li class="et-social-icon et-social-rss">
		<a href="http://mollygreen.com/feed/" class="icon">
			<span>RSS</span>
		</a>
	</li>

</ul>				</div> <!-- #et-info -->

			
				<div id="et-secondary-menu">
				<div class="et_duplicate_social_icons">
								<ul class="et-social-icons">

	<li class="et-social-icon et-social-facebook">
		<a href="https://www.facebook.com/pages/Molly-Green/675044465909805" class="icon">
			<span>Facebook</span>
		</a>
	</li>
	<li class="et-social-icon et-social-twitter">
		<a href="https://twitter.com/MollyGreenMag" class="icon">
			<span>Twitter</span>
		</a>
	</li>
	<li class="et-social-icon et-social-rss">
		<a href="http://mollygreen.com/feed/" class="icon">
			<span>RSS</span>
		</a>
	</li>

</ul>
							</div><ul id="et-secondary-nav" class="menu"><li class="bp-menu bp-login-nav menu-item menu-item-type-custom menu-item-object-custom menu-item-13862"><a href="http://mollygreen.com/wp-login.php?redirect_to=http%3A%2F%2Fmollygreen.com%2F%3Fu%3Donfire">Log In</a></li>
<li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-18810"><a target="_blank" href="http://mollygreen.com/affiliate-area/">Affiliate Area &#8211; Sign Up</a></li>
<li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-22208"><a target="_blank" href="http://mollygreen.com/affiliate-signup/">Affiliate Area &#8211; Sign In</a></li>
</ul><a href="http://mollygreen.com/cart/" class="et-cart-info">
				<span>0 Items</span>
			</a>				</div> <!-- #et-secondary-menu -->

			</div> <!-- .container -->
		</div> <!-- #top-header -->
	
	
		<header id="main-header" data-height-onload="66">
			<div class="container clearfix et_menu_container">
							<div class="logo_container">
					<span class="logo_helper"></span>
					<a href="http://mollygreen.com/">
						<img src="https://mollygreen.com/wp-content/uploads/2015/07/MGM-Web-Logo-long386px.png" alt="Molly Green" id="logo" data-height-percentage="54" />
					</a>
				</div>
				<div id="et-top-navigation" data-height="66" data-fixed-height="40">
											<nav id="top-menu-nav">
						<ul id="top-menu" class="nav"><li id="menu-item-19250" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-19250"><a href="http://mollygreen.com">Home</a></li>
<li id="menu-item-19241" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-19241"><a href="#">Subscribe</a>
<ul class="sub-menu">
	<li id="menu-item-19243" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19243"><a target="_blank" href="http://mollygreenonline.com">Read Current Issue</a></li>
	<li id="menu-item-19242" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19242"><a href="http://mollygreen.com/product/print+subscription+usa">Subscribe &#8211; $24/year</a></li>
	<li id="menu-item-16497" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16497"><a target="_blank" href="http://mollygreen.com/join">Become a Member &#8211; best value</a></li>
	<li id="menu-item-20599" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-20599"><a target="_blank" href="http://mollygreen.com/enewsletter/">Free eNewsletter</a></li>
	<li id="menu-item-16084" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16084"><a href="http://mollygreen.com/mg-apps/">Free Apps</a></li>
	<li id="menu-item-31903" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-31903"><a href="#">Magazine</a>
	<ul class="sub-menu">
		<li id="menu-item-31899" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-31899"><a href="#">Reviews</a>
		<ul class="sub-menu">
			<li id="menu-item-31900" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-31900"><a target="_blank" href="http://www.sheilacakesblog.com/2016/03/molly-green-magazine-helps-simplify.html">Sheila Rominger</a></li>
			<li id="menu-item-31901" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-31901"><a target="_blank" href="http://www.aliciahutchinson.com/?p=60">Alicia Hutchinson</a></li>
			<li id="menu-item-31902" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-31902"><a target="_blank" href="http://www.littlehouseliving.com/molly-green-a-review-a-giveaway.html">Merissa Alink</a></li>
		</ul>
</li>
	</ul>
</li>
</ul>
</li>
<li id="menu-item-12848" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-12848"><a href="http://mollygreen.com/mercantile">Mercantile</a>
<ul class="sub-menu">
	<li id="menu-item-21660" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-21660"><a href="http://mollygreen.com/mercantile">Mercantile</a></li>
	<li id="menu-item-21661" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21661"><a href="http://mollygreen.com/product-category/molly-green-magazine-2015/">Print Magazines</a></li>
	<li id="menu-item-13979" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-13979"><a href="http://mollygreen.com/product-category/planners/">Planners</a></li>
	<li id="menu-item-13976" class="menu-item menu-item-type-taxonomy menu-item-object-product_cat menu-item-13976"><a href="http://mollygreen.com/product-category/vintage-molly-green/">Vintage Molly Green</a></li>
	<li id="menu-item-13636" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-13636"><a href="http://mollygreen.com/cart/">Cart</a></li>
	<li id="menu-item-12849" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12849"><a href="http://mollygreen.com/mercantile/featured-mercantile-products/">Featured Mercantile Products</a></li>
	<li id="menu-item-16176" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16176"><a href="http://mollygreen.com/mercantile/track-your-order/">Track Your Order</a></li>
</ul>
</li>
<li id="menu-item-18940" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-18940"><a href="http://mollygreenshops.com">Shops</a>
<ul class="sub-menu">
	<li id="menu-item-19102" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19102"><a target="_blank" href="http://mollygreenshops.com">Grab a Shop</a></li>
	<li id="menu-item-19264" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-19264"><a href="http://mollygreen.com/farms/">Farms</a></li>
</ul>
</li>
<li id="menu-item-13752" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-13752"><a href="http://mollygreen.com/mollyblog">Blog</a>
<ul class="sub-menu">
	<li id="menu-item-15429" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15429"><a href="http://mollygreen.com/mollyblog">Recent articles</a></li>
	<li id="menu-item-11649" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11649"><a href="http://mollygreen.com/homesteading/">HOMEsteading</a></li>
	<li id="menu-item-11647" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11647"><a href="http://mollygreen.com/homekeeping/">HOMEkeeping</a></li>
	<li id="menu-item-11648" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11648"><a href="http://mollygreen.com/homeschooling/">HOMEschooling</a></li>
	<li id="menu-item-11646" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-11646"><a href="http://mollygreen.com/home-industry/">HOMEindustry</a></li>
</ul>
</li>
<li id="menu-item-75" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-has-children menu-item-75"><a href="http://mollygreen.com/about-us/">About</a>
<ul class="sub-menu">
	<li id="menu-item-21368" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21368"><a href="http://mollygreenmediakit.com/">Advertise</a></li>
	<li id="menu-item-17087" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17087"><a target="_blank" href="http://mollygreen.com/about-us/">What is Molly Green?</a></li>
	<li id="menu-item-17085" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17085"><a target="_blank" href="http://mollygreen.com/mission-statement/">Mission</a></li>
	<li id="menu-item-17822" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17822"><a target="_blank" href="http://mollygreen.com/submission_information_for_molly_green_magazine/">Writer’s Guidelines</a></li>
	<li id="menu-item-19128" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-19128"><a href="http://mollygreen.com/business-stories/">Business Stories</a></li>
	<li id="menu-item-19251" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-19251"><a href="http://mollygreen.com/affiliate-area/">Affiliate Program</a></li>
	<li id="menu-item-29711" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-29711"><a href="http://mollygreen.com/reviews/">Molly Green Reviews</a></li>
	<li id="menu-item-19104" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-19104"><a href="http://mollygreen.com/farms/">National Farms Network</a></li>
	<li id="menu-item-9038" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9038"><a href="http://mollygreen.com/contact/">Contact Us</a></li>
</ul>
</li>
</ul>						</nav>
					
					
					
										<div id="et_top_search">
						<span id="et_search_icon"></span>
					</div>
					
					<div id="et_mobile_nav_menu">
				<div class="mobile_nav closed">
					<span class="select_page">Select Page</span>
					<span class="mobile_menu_bar mobile_menu_bar_toggle"></span>
				</div>
			</div>				</div> <!-- #et-top-navigation -->
			</div> <!-- .container -->
			<div class="et_search_outer">
				<div class="container et_search_form_container">
					<form role="search" method="get" class="et-search-form" action="http://mollygreen.com/">
					<input type="search" class="et-search-field" placeholder="Search &hellip;" value="" name="s" title="Search for:" />					</form>
					<span class="et_close_search_field"></span>
				</div>
			</div>
		</header> <!-- #main-header -->

		<div id="et-main-area">
<div id="main-content">


			
				<article id="post-8982" class="post-8982 page type-page status-publish hentry">

				
					<div class="entry-content">
					<div class="et_pb_section et_pb_fullwidth_section  et_pb_section_0 et_section_regular">
				
				
					
					<div class="et_pb_module et_pb_slider et_slider_auto et_slider_speed_9000  et_pb_fullwidth_slider_0">
				<div class="et_pb_slides">
					
<div class="et_pb_slide et_pb_bg_layout_dark et_pb_slide_0 et-pb-active-slide" style='background-color:#ffffff;background-image:url(http://mollygreen.com/wp-content/uploads/2014/07/barn.jpg);'>
				
				
				<div class="et_pb_container clearfix">
					
					<div class="et_pb_slide_description">
						<h2 class="et_pb_slide_title"><a href="http://mollygreen.com/join"><strong>Dream</strong> a Little Dream of <strong>Home</strong>...</a></h2>
						<div class="et_pb_slide_content">
<p style="text-align: center;"><b><a href="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1.png"><img class="aligncenter size-full wp-image-11509" src="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1.png" alt="MGM Header Logo-RIGHT_wht" width="730" height="203" srcset="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1.png 730w, http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1-300x83.png 300w" sizes="(max-width: 730px) 100vw, 730px" /></a></b></p>
<h3 style="text-align: center;">Where <strong>HOME</strong> is a Way of Life</h3>
<h4 style="text-align: center;"><span style="font-family: Arial;">.99c for your first month!</span></h4>
</div>
						<a href="http://mollygreen.com/join" class="et_pb_more_button et_pb_button">Join</a>
					</div> <!-- .et_pb_slide_description -->
				</div> <!-- .et_pb_container -->
				
			</div> <!-- .et_pb_slide -->
			<div class="et_pb_slide et_pb_slide_with_image et_pb_bg_layout_dark et_pb_media_alignment_center et_pb_slide_1" style='background-color:#ffffff;background-image:url(http://mollygreen.com/wp-content/uploads/2015/06/horsegirl1800.jpg);'>
				
				
				<div class="et_pb_container clearfix">
					<div class="et_pb_slide_image"><img src="http://mollygreen.com/wp-content/uploads/2014/07/clearnothing.png" alt="" /></div>
					<div class="et_pb_slide_description">
						<h2 class="et_pb_slide_title"><a href="http://mollygreen.com/product/molly-green-annual-print-subscription/"></p>
<p><center>Subscribe to the <strong>Print Magazine</strong> for all things HOME.</center></a></h2>
						<div class="et_pb_slide_content">
<p><a href="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1.png"><img class="aligncenter size-full wp-image-11509" src="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1.png" alt="MGM Header Logo-RIGHT_wht" width="730" height="203" srcset="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1.png 730w, http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1-300x83.png 300w" sizes="(max-width: 730px) 100vw, 730px" /></a></p>
<h3 style="text-align: center;">Only $24/year, delivered to your front door.</h3>
<h3 style="text-align: center;"><strong><a href="http://mollygreen.com/product/molly-green-annual-print-subscription/" target="_blank">Subscribe</a></strong></h3>
</div>
						
					</div> <!-- .et_pb_slide_description -->
				</div> <!-- .et_pb_container -->
				
			</div> <!-- .et_pb_slide -->
			<div class="et_pb_slide et_pb_bg_layout_dark et_pb_media_alignment_center et_pb_slide_2" style='background-color:#ffffff;background-image:url(http://mollygreen.com/wp-content/uploads/2014/07/shop21800.jpg);'>
				
				
				<div class="et_pb_container clearfix">
					
					<div class="et_pb_slide_description">
						<h2 class="et_pb_slide_title"><a href="http://mollygreen.com/product/molly-green-annual-print-subscription/"></p>
<p><center>Have a Home Business?</center></a></h2>
						<div class="et_pb_slide_content">
<h1 style="text-align: center;"><a href="http://mollygreenshops.com/" target="_blank"><img class="aligncenter size-full wp-image-15596" src="http://mollygreen.com/wp-content/uploads/2015/01/MGM-Cottage-Shops-Logo-white-7301.png" alt="MGM Cottage Shops Logo - white 730" width="730" height="203" srcset="http://mollygreen.com/wp-content/uploads/2015/01/MGM-Cottage-Shops-Logo-white-7301.png 730w, http://mollygreen.com/wp-content/uploads/2015/01/MGM-Cottage-Shops-Logo-white-7301-300x83.png 300w" sizes="(max-width: 730px) 100vw, 730px" /></a></h1>
<h1 style="text-align: center;"><span style="font-family: Arial;">Let Us Promote It.</span></h1>
<h1 style="text-align: center;"><span style="font-family: Arial;"> <a class="moz-txt-link-abbreviated" href="http://www.MollyGreenShops.com" target="_blank">www.MollyGreenShops.com</a></span></h1>
</div>
						
					</div> <!-- .et_pb_slide_description -->
				</div> <!-- .et_pb_container -->
				
			</div> <!-- .et_pb_slide -->
			<div class="et_pb_slide et_pb_slide_with_image et_pb_bg_layout_dark et_pb_media_alignment_center et_pb_slide_3" style='background-color:#ffffff;background-image:url(http://mollygreen.com/wp-content/uploads/2014/10/dreamstime_xl_35965748-e1413871511196.jpg);'>
				
				
				<div class="et_pb_container clearfix">
					<div class="et_pb_slide_image"><img src="http://mollygreen.com/wp-content/uploads/2014/07/clearnothing.png" alt="" /></div>
					<div class="et_pb_slide_description">
						<h2 class="et_pb_slide_title"><a href="http://mollygreen.com/product/molly-green-annual-print-subscription/"></p>
<p><center>Subscribe to the <strong>Print Magazine</strong> for all things HOME.</center></a></h2>
						<div class="et_pb_slide_content">
<p><a href="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1.png"><img class="aligncenter size-full wp-image-11509" src="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1.png" alt="MGM Header Logo-RIGHT_wht" width="730" height="203" srcset="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1.png 730w, http://mollygreen.com/wp-content/uploads/2014/07/MGM-Header-Logo-RIGHT_wht1-300x83.png 300w" sizes="(max-width: 730px) 100vw, 730px" /></a></p>
<h3 style="text-align: center;">Only $24/year, delivered to your front door.</h3>
<h3 style="text-align: center;"><strong><a href="http://mollygreen.com/product/molly-green-annual-print-subscription/" target="_blank">Subscribe</a></strong></h3>
</div>
						
					</div> <!-- .et_pb_slide_description -->
				</div> <!-- .et_pb_container -->
				
			</div> <!-- .et_pb_slide -->
			<div class="et_pb_slide et_pb_slide_with_image et_pb_bg_layout_dark et_pb_media_alignment_center et_pb_slide_4" style='background-color:#ffffff;background-image:url(http://mollygreen.com/wp-content/uploads/2015/06/greenhouse1800.jpg);'>
				
				
				<div class="et_pb_container clearfix">
					<div class="et_pb_slide_image"><img src="http://mollygreen.com/wp-content/uploads/2014/07/clearnothing.png" alt="" /></div>
					<div class="et_pb_slide_description">
						
						<div class="et_pb_slide_content">
<p><img class="aligncenter size-full wp-image-16489" src="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Membership-Logo-White.png" alt="MGM Membership Logo - White" width="518" height="133" srcset="http://mollygreen.com/wp-content/uploads/2014/07/MGM-Membership-Logo-White.png 518w, http://mollygreen.com/wp-content/uploads/2014/07/MGM-Membership-Logo-White-300x77.png 300w" sizes="(max-width: 518px) 100vw, 518px" /></p>
<h3 style="padding-left: 30px;"><strong>• Members Receive the PRINT Magazine</strong></h3>
<h3 style="padding-left: 30px;"><strong>• ALL Molly Green Back Issues &amp; Cookbooks </strong></h3>
<h3 style="padding-left: 30px;"><strong>• DIY Homesteading</strong></h3>
<h3 style="padding-left: 30px;"><strong>• 10,000 streaming videos</strong></h3>
<h3 style="padding-left: 30px;"><strong>• More Benefits Added Regularly</strong></h3>
</div>
						<a href="http://mollygreen.com/join" class="et_pb_more_button et_pb_button">Join</a>
					</div> <!-- .et_pb_slide_description -->
				</div> <!-- .et_pb_container -->
				
			</div> <!-- .et_pb_slide -->
			

				</div> <!-- .et_pb_slides -->
			</div> <!-- .et_pb_slider -->
			
				
			</div> <!-- .et_pb_section --><div class="et_pb_section  et_pb_section_1 et_section_regular">
				
				
					
					<div class=" et_pb_row et_pb_row_0">
				
				<div class="et_pb_column et_pb_column_1_4  et_pb_column_0">
				
				<div class="et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_0">
				
<p style="text-align: center;"><a href="http://mollygreen.com/homesteading/"><img class="aligncenter wp-image-10545 size-full" src="http://mollygreen.com/wp-content/uploads/2014/07/HOMEsteading-web-button.png" alt="HOMEsteading web button" width="259" height="81" /></a></p>
<p style="color: black; text-align: center;"><strong>Your family loves a lifestyle that sustains itself on your own land, and we love writing about it!  We’ll help you turn your land <a href="http://mollygreen.com/homesteading/">into a homestead.</a></strong></p>

			</div> <!-- .et_pb_text -->
			</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_4  et_pb_column_1">
				
				<div class="et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_1">
				
<p style="text-align: center;"><a href="http://mollygreen.com/homekeeping/"><img class="aligncenter wp-image-10543 size-full" src="http://mollygreen.com/wp-content/uploads/2014/07/HOMEkeeping-web-button.png" alt="HOMEkeeping web button" width="259" height="81" /></a></p>
<p style="color: black; text-align: center;"><strong>Your home is your sanctuary, and keeping it should be a joy and never a struggle.  Our experts will take the load off with tips, <a href="http://mollygreen.com/homekeeping/">articles and more.</a></strong></p>

			</div> <!-- .et_pb_text -->
			</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_4  et_pb_column_2">
				
				<div class="et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_2">
				
<p style="text-align: center;"><a href="http://mollygreen.com/homeschooling/"><img class="aligncenter wp-image-10544 size-full" src="http://mollygreen.com/wp-content/uploads/2014/07/HOMEschooling-web-button.png" alt="HOMEschooling web button" width="264" height="81" /></a></p>
<p style="text-align: center;"><strong>Teaching your children at home is one of the most rewarding callings for a mom, but we understand it’s also challenging. <a href="http://mollygreen.com/homeschooling/"> We can help.</a></strong></p>

			</div> <!-- .et_pb_text -->
			</div> <!-- .et_pb_column --><div class="et_pb_column et_pb_column_1_4  et_pb_column_3">
				
				<div class="et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_3">
				
<p style="text-align: center;"><a href="http://mollygreen.com/home-industry/"><img class="aligncenter wp-image-10542 size-full" src="http://mollygreen.com/wp-content/uploads/2014/07/HOMEindustry-web-button.png" alt="HOMEindustry web button" width="264" height="81" /></a></p>
<p style="text-align: center;"><strong>We believe that every homesteader can sell a product or service of their very own.  Running a home business is our specialty.  <span style="color: #222222;"><a href="http://mollygreen.com/home-industry/">Let us make it <em>yours</em>.</a></span></strong></p>

			</div> <!-- .et_pb_text -->
			</div> <!-- .et_pb_column -->
					
			</div> <!-- .et_pb_row --><div class=" et_pb_row et_pb_row_1">
				
				<div class="et_pb_column et_pb_column_4_4  et_pb_column_4">
				
				<div class="et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_4">
				
<p><code><ul class="kiwi-logo-carousel kiwi-logo-carousel-stores default align-center col4"><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/barnes-noblelogo.png" alt="Barnes & Noble" title="Barnes & Noble" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/krogerlogo.png" alt="Kroger" title="Kroger" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/bamlogo.png" alt="BAM" title="BAM" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/hastingslogo.png" alt="Hastings" title="Hastings" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/indigologo.png" alt="Indigo" title="Indigo" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/winco.jpg" alt="WinCo" title="WinCo" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/supervalulogo.jpg" alt="SuperValu" title="SuperValu" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/shopkologo.jpg" alt="ShopKo" title="ShopKo" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/wmlogo.jpg" alt="Walmart" title="Walmart" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/topslogo.jpg" alt="Tops" title="Tops" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li><li style="height:100px;" ><div class="helper" style="height:100px; width:200px;" ><img src="http://mollygreen.com/wp-content/uploads/2016/04/hyvee-logo.png" alt="HyVee" title="HyVee" style="max-width:200px; padding-left: 0px; padding-right:0px" ></div></li></ul></code></p>

			</div> <!-- .et_pb_text -->
			</div> <!-- .et_pb_column -->
					
			</div> <!-- .et_pb_row --><div class=" et_pb_row et_pb_row_2">
				
				<div class="et_pb_column et_pb_column_4_4  et_pb_column_5">
				
				<div class="et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_5">
				
<h1 style="text-align: center;"><span style="font-family: Arial;">The above stores carry <em><strong>Molly Green Magazine</strong></em> in select locations.</span></h1>
<h1 style="text-align: center;"><span style="font-family: Arial;">Or &#8211; become a <strong>Molly Green Member</strong> and</span></h1>
<h1 style="text-align: center;"><span style="font-family: Arial;">get the magazine delivered directly to your door or PO Box.</span></h1>
<h1 style="text-align: center;"><span style="font-family: Arial;">Join Below!</span></h1>
<p>&nbsp;</p>
<h2 style="text-align: center;"><img class="aligncenter size-full wp-image-31867" src="http://mollygreen.com/wp-content/uploads/2016/03/MGM-Spring-2016-3D-Cover-72.png" alt="MGM Spring 2016 3D Cover-72" width="518" height="540" srcset="http://mollygreen.com/wp-content/uploads/2016/03/MGM-Spring-2016-3D-Cover-72.png 518w, http://mollygreen.com/wp-content/uploads/2016/03/MGM-Spring-2016-3D-Cover-72-288x300.png 288w" sizes="(max-width: 518px) 100vw, 518px" /></h2>
<h2 class="" style="text-align: center;"><strong><span class="" style="color: #800000;">What Comes with a Molly Green Membership?</span></strong></h2>
<h3 style="text-align: center;">• PRINT subscription of <em>Molly Green</em> <em>Magazine</em> mailed quarterly</h3>
<h3 style="text-align: center;">• All vintage digital <em class="">Molly Green M</em><em>agazines</em> (over 60!)</h3>
<h3 style="text-align: center;">• All Molly Green related eBooks including cookbooks and $5 meal plans</h3>
<h3 style="text-align: center;">• All Bite-Sized(TM) Guides</h3>
<h3 style="text-align: center;">• Custom Homestead Planners for gardening, cleaning, meal prep and more</h3>
<h3 style="text-align: center;">• Access to Build a Menu’s 7-meal “Dine on a Dime” menu each week</h3>
<h3 style="text-align: center;">• Unlimited streaming videos – 10,000 of them!</h3>
<h3 style="text-align: center;">-And more perks and privileges being added continuously for Members &#8211; check back often.</h3>
<h3 style="text-align: center;"></h3>
<h3 style="text-align: center;"><a href="http://mollygreen.com/join/" target="_blank"><img class="aligncenter wp-image-16421 size-full" src="http://mollygreen.com/wp-content/uploads/2014/10/join-btn.png" alt="join-btn" width="200" height="56" /></a><strong>$.99c for the first month, $4.95/mo thereafter</strong></h3>
<h3 style="text-align: center;">cancel anytime</h3>

			</div> <!-- .et_pb_text -->
			</div> <!-- .et_pb_column -->
					
			</div> <!-- .et_pb_row --><div class=" et_pb_row et_pb_row_3">
				
				<div class="et_pb_column et_pb_column_4_4  et_pb_column_6">
				
				<div class="et_pb_text et_pb_module et_pb_bg_layout_light et_pb_text_align_left  et_pb_text_6">
				 <link href="http://fonts.googleapis.com/css?family=Raleway%3A500%2C800" rel="stylesheet" property="stylesheet" type="text/css" media="all" />
<div id="rev_slider_7_1_wrapper" class="rev_slider_wrapper fullwidthbanner-container" style="margin:0px auto;background-color:transparent;padding:0px;margin-top:0px;margin-bottom:0px;max-width:640px;">
<!-- START REVOLUTION SLIDER 5.2.4.1 auto mode -->
	<div id="rev_slider_7_1" class="rev_slider fullwidthabanner" style="display:none;" data-version="5.2.4.1">
<ul>	<!-- SLIDE  -->
	<li data-index="rs-48105" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off"  data-easein="default" data-easeout="default" data-masterspeed="default"  data-thumb="http://mollygreen.com/wp-content/uploads/2016/05/Steele_FreshEggs_640x400-100x50.jpg"  data-rotate="0"  data-fstransition="fade" data-fsmasterspeed="1500" data-fsslotamount="7" data-saveperformance="off"  data-title="All about Fresh Eggs" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="Use these tips and tricks for your fresh eggs!">
		<!-- MAIN IMAGE -->
		<img src="http://mollygreen.com/wp-content/uploads/2016/05/Steele_FreshEggs_640x400.jpg"  alt="" title="Steele_FreshEggs_640x400"  width="640" height="400" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
		<!-- LAYERS -->
	</li>
	<!-- SLIDE  -->
	<li data-index="rs-32577" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off"  data-easein="default" data-easeout="default" data-masterspeed="default"  data-thumb="http://mollygreen.com/wp-content/uploads/2016/04/Sahlin_DIYCheeseMaking_640x400-100x50.jpg"  data-rotate="0"  data-saveperformance="off"  data-title="Make Hard Cheese at Home" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="Learn how to make hard cheese at home!">
		<!-- MAIN IMAGE -->
		<img src="http://mollygreen.com/wp-content/uploads/2016/04/Sahlin_DIYCheeseMaking_640x400.jpg"  alt="" title="Sahlin_DIYCheeseMaking_640x400"  width="640" height="400" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
		<!-- LAYERS -->
	</li>
	<!-- SLIDE  -->
	<li data-index="rs-32494" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off"  data-easein="default" data-easeout="default" data-masterspeed="default"  data-thumb="http://mollygreen.com/wp-content/uploads/2016/04/Domingues_Winter-in-a-Your_640x400-100x50.jpg"  data-rotate="0"  data-saveperformance="off"  data-title="Winter in a Yurt with Three Children" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="Discover how one woman, her family, and a yurt pursued their homesteading dream!">
		<!-- MAIN IMAGE -->
		<img src="http://mollygreen.com/wp-content/uploads/2016/04/Domingues_Winter-in-a-Your_640x400.jpg"  alt="" title="Domingues_Winter in a Your_640x400"  width="640" height="400" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
		<!-- LAYERS -->
	</li>
	<!-- SLIDE  -->
	<li data-index="rs-32529" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off"  data-easein="default" data-easeout="default" data-masterspeed="default"  data-thumb="http://mollygreen.com/wp-content/uploads/2016/04/Courtney_CursiveCurriculumReview_640x400-100x50.jpg"  data-rotate="0"  data-saveperformance="off"  data-title="Review of Rhythm of Handwriting from Logic of English" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="Are you looking for a cursive writing curriculum for your child?">
		<!-- MAIN IMAGE -->
		<img src="http://mollygreen.com/wp-content/uploads/2016/04/Courtney_CursiveCurriculumReview_640x400.jpg"  alt="" title="Courtney_CursiveCurriculumReview_640x400"  width="640" height="400" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
		<!-- LAYERS -->
	</li>
	<!-- SLIDE  -->
	<li data-index="rs-32574" data-transition="fade" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off"  data-easein="default" data-easeout="default" data-masterspeed="default"  data-thumb="http://mollygreen.com/wp-content/uploads/2016/04/Domingues_Logo-and-Branding_640x400-100x50.jpg"  data-rotate="0"  data-saveperformance="off"  data-title="Logo and Branding—Building Your Empire" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="Learn how to brand your home business!">
		<!-- MAIN IMAGE -->
		<img src="http://mollygreen.com/wp-content/uploads/2016/04/Domingues_Logo-and-Branding_640x400.jpg"  alt="" title="Domingues_Logo and Branding_640x400"  width="640" height="400" data-bgposition="center center" data-bgfit="cover" data-bgrepeat="no-repeat" data-bgparallax="off" class="rev-slidebg" data-no-retina>
		<!-- LAYERS -->
	</li>
</ul>
<script>var htmlDiv = document.getElementById("rs-plugin-settings-inline-css"); var htmlDivCss="";
						if(htmlDiv) {
							htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
						}else{
							var htmlDiv = document.createElement("div");
							htmlDiv.innerHTML = "<style>" + htmlDivCss + "</style>";
							document.getElementsByTagName("head")[0].appendChild(htmlDiv.childNodes[0]);
						}
					</script>
<div class="tp-bannertimer" style="height: 7px; background-color: rgba(255, 255, 255, 0.25);"></div>	</div>
<script>var htmlDiv = document.getElementById("rs-plugin-settings-inline-css"); var htmlDivCss="";
				if(htmlDiv) {
					htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
				}else{
					var htmlDiv = document.createElement("div");
					htmlDiv.innerHTML = "<style>" + htmlDivCss + "</style>";
					document.getElementsByTagName("head")[0].appendChild(htmlDiv.childNodes[0]);
				}
			</script>
		<script type="text/javascript">
						/******************************************
				-	PREPARE PLACEHOLDER FOR SLIDER	-
			******************************************/

			var setREVStartSize=function(){
				try{var e=new Object,i=jQuery(window).width(),t=9999,r=0,n=0,l=0,f=0,s=0,h=0;
					e.c = jQuery('#rev_slider_7_1');
					e.responsiveLevels = [1240,1024,778,778];
					e.gridwidth = [1240,1024,778,480];
					e.gridheight = [600,600,500,400];
							
					e.sliderLayout = "auto";
					if(e.responsiveLevels&&(jQuery.each(e.responsiveLevels,function(e,f){f>i&&(t=r=f,l=e),i>f&&f>r&&(r=f,n=e)}),t>r&&(l=n)),f=e.gridheight[l]||e.gridheight[0]||e.gridheight,s=e.gridwidth[l]||e.gridwidth[0]||e.gridwidth,h=i/s,h=h>1?1:h,f=Math.round(h*f),"fullscreen"==e.sliderLayout){var u=(e.c.width(),jQuery(window).height());if(void 0!=e.fullScreenOffsetContainer){var c=e.fullScreenOffsetContainer.split(",");if (c) jQuery.each(c,function(e,i){u=jQuery(i).length>0?u-jQuery(i).outerHeight(!0):u}),e.fullScreenOffset.split("%").length>1&&void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0?u-=jQuery(window).height()*parseInt(e.fullScreenOffset,0)/100:void 0!=e.fullScreenOffset&&e.fullScreenOffset.length>0&&(u-=parseInt(e.fullScreenOffset,0))}f=u}else void 0!=e.minHeight&&f<e.minHeight&&(f=e.minHeight);e.c.closest(".rev_slider_wrapper").css({height:f})
					
				}catch(d){console.log("Failure at Presize of Slider:"+d)}
			};
			
			setREVStartSize();
			
						var tpj=jQuery;
			
			var revapi7;
			tpj(document).ready(function() {
				if(tpj("#rev_slider_7_1").revolution == undefined){
					revslider_showDoubleJqueryError("#rev_slider_7_1");
				}else{
					revapi7 = tpj("#rev_slider_7_1").show().revolution({
						sliderType:"standard",
jsFileLocation:"//mollygreen.com/wp-content/plugins/revslider/public/assets/js/",
						sliderLayout:"auto",
						dottedOverlay:"none",
						delay:9000,
						navigation: {
							keyboardNavigation:"off",
							keyboard_direction: "horizontal",
							mouseScrollNavigation:"off",
 							mouseScrollReverse:"default",
							onHoverStop:"off",
							touch:{
								touchenabled:"on",
								swipe_threshold: 75,
								swipe_min_touches: 1,
								swipe_direction: "horizontal",
								drag_block_vertical: false
							}
							,
							arrows: {
								style:"zeus",
								enable:true,
								hide_onmobile:true,
								hide_under:600,
								hide_onleave:true,
								hide_delay:200,
								hide_delay_mobile:1200,
								tmp:'<div class="tp-title-wrap">  	<div class="tp-arr-imgholder"></div> </div>',
								left: {
									h_align:"left",
									v_align:"center",
									h_offset:30,
									v_offset:0
								},
								right: {
									h_align:"right",
									v_align:"center",
									h_offset:30,
									v_offset:0
								}
							}
							,
							bullets: {
								enable:true,
								hide_onmobile:true,
								hide_under:600,
								style:"metis",
								hide_onleave:true,
								hide_delay:200,
								hide_delay_mobile:1200,
								direction:"horizontal",
								h_align:"center",
								v_align:"bottom",
								h_offset:0,
								v_offset:30,
								space:5,
								tmp:'<span class="tp-bullet-img-wrap">  <span class="tp-bullet-image"></span></span><span class="tp-bullet-title">{{title}}</span>'
							}
						},
						viewPort: {
							enable:true,
							outof:"pause",
							visible_area:"80%"
						},
						responsiveLevels:[1240,1024,778,778],
						visibilityLevels:[1240,1024,778,778],
						gridwidth:[1240,1024,778,480],
						gridheight:[600,600,500,400],
						lazyType:"none",
						parallax: {
							type:"mouse",
							origo:"slidercenter",
							speed:2000,
							levels:[2,3,4,5,6,7,12,16,10,50,46,47,48,49,50,55],
							type:"mouse",
						},
						shadow:0,
						spinner:"off",
						stopLoop:"off",
						stopAfterLoops:-1,
						stopAtSlide:-1,
						shuffle:"off",
						autoHeight:"off",
						hideThumbsOnMobile:"off",
						hideSliderAtLimit:0,
						hideCaptionAtLimit:0,
						hideAllCaptionAtLilmit:0,
						debugMode:false,
						fallbacks: {
							simplifyAll:"off",
							nextSlideOnWindowFocus:"off",
							disableFocusListener:false,
						}
					});
				}
			});	/*ready*/
		</script>
		<script>
					var htmlDivCss = unescape("%23rev_slider_7_1%20.zeus.tparrows%20%7B%0A%20%20cursor%3Apointer%3B%0A%20%20min-width%3A70px%3B%0A%20%20min-height%3A70px%3B%0A%20%20position%3Aabsolute%3B%0A%20%20display%3Ablock%3B%0A%20%20z-index%3A100%3B%0A%20%20border-radius%3A50%25%3B%20%20%20%0A%20%20overflow%3Ahidden%3B%0A%20%20background%3Argba%280%2C0%2C0%2C0.1%29%3B%0A%7D%0A%0A%23rev_slider_7_1%20.zeus.tparrows%3Abefore%20%7B%0A%20%20font-family%3A%20%22revicons%22%3B%0A%20%20font-size%3A20px%3B%0A%20%20color%3Argb%28255%2C%20255%2C%20255%29%3B%0A%20%20display%3Ablock%3B%0A%20%20line-height%3A%2070px%3B%0A%20%20text-align%3A%20center%3B%20%20%20%20%0A%20%20z-index%3A2%3B%0A%20%20position%3Arelative%3B%0A%7D%0A%23rev_slider_7_1%20.zeus.tparrows.tp-leftarrow%3Abefore%20%7B%0A%20%20content%3A%20%22%5Ce824%22%3B%0A%7D%0A%23rev_slider_7_1%20.zeus.tparrows.tp-rightarrow%3Abefore%20%7B%0A%20%20content%3A%20%22%5Ce825%22%3B%0A%7D%0A%0A%23rev_slider_7_1%20.zeus%20.tp-title-wrap%20%7B%0A%20%20background%3Argba%280%2C0%2C0%2C0.5%29%3B%0A%20%20width%3A100%25%3B%0A%20%20height%3A100%25%3B%0A%20%20top%3A0px%3B%0A%20%20left%3A0px%3B%0A%20%20position%3Aabsolute%3B%0A%20%20opacity%3A0%3B%0A%20%20transform%3Ascale%280%29%3B%0A%20%20-webkit-transform%3Ascale%280%29%3B%0A%20%20%20transition%3A%20all%200.3s%3B%0A%20%20-webkit-transition%3Aall%200.3s%3B%0A%20%20-moz-transition%3Aall%200.3s%3B%0A%20%20%20border-radius%3A50%25%3B%0A%20%7D%0A%23rev_slider_7_1%20.zeus%20.tp-arr-imgholder%20%7B%0A%20%20width%3A100%25%3B%0A%20%20height%3A100%25%3B%0A%20%20position%3Aabsolute%3B%0A%20%20top%3A0px%3B%0A%20%20left%3A0px%3B%0A%20%20background-position%3Acenter%20center%3B%0A%20%20background-size%3Acover%3B%0A%20%20border-radius%3A50%25%3B%0A%20%20transform%3Atranslatex%28-100%25%29%3B%0A%20%20-webkit-transform%3Atranslatex%28-100%25%29%3B%0A%20%20%20transition%3A%20all%200.3s%3B%0A%20%20-webkit-transition%3Aall%200.3s%3B%0A%20%20-moz-transition%3Aall%200.3s%3B%0A%0A%20%7D%0A%23rev_slider_7_1%20.zeus.tp-rightarrow%20.tp-arr-imgholder%20%7B%0A%20%20%20%20transform%3Atranslatex%28100%25%29%3B%0A%20%20-webkit-transform%3Atranslatex%28100%25%29%3B%0A%20%20%20%20%20%20%7D%0A%23rev_slider_7_1%20.zeus.tparrows%3Ahover%20.tp-arr-imgholder%20%7B%0A%20%20transform%3Atranslatex%280%29%3B%0A%20%20-webkit-transform%3Atranslatex%280%29%3B%0A%20%20opacity%3A1%3B%0A%7D%0A%20%20%20%20%20%20%0A%23rev_slider_7_1%20.zeus.tparrows%3Ahover%20.tp-title-wrap%20%7B%0A%20%20transform%3Ascale%281%29%3B%0A%20%20-webkit-transform%3Ascale%281%29%3B%0A%20%20opacity%3A1%3B%0A%7D%0A%20%0A%23rev_slider_7_1%20.metis%20.tp-bullet%20%7B%20%0A%20%20%20%20opacity%3A1%3B%0A%20%20%20%20width%3A50px%3B%0A%20%20%20%20height%3A50px%3B%20%20%20%20%0A%20%20%20%20padding%3A3px%3B%0A%20%20%20%20background-color%3Argba%280%2C%200%2C%200%2C0.25%29%3B%0A%20%20%20%20margin%3A0px%3B%0A%20%20%20%20box-sizing%3Aborder-box%3B%0A%20%20%20%20transition%3Aall%200.3s%3B%0A%20%20%20%20-webkit-transition%3Aall%200.3s%3B%0A%20%20%20%20border-radius%3A50%25%3B%0A%20%20%7D%0A%0A%23rev_slider_7_1%20.metis%20.tp-bullet-image%20%7B%0A%0A%20%20%20border-radius%3A50%25%3B%0A%20%20%20display%3Ablock%3B%0A%20%20%20box-sizing%3Aborder-box%3B%0A%20%20%20position%3Arelative%3B%0A%20%20%20%20-webkit-box-shadow%3A%20inset%205px%205px%2010px%200px%20rgba%280%2C0%2C0%2C0.25%29%3B%0A%20%20-moz-box-shadow%3A%20inset%205px%205px%2010px%200px%20rgba%280%2C0%2C0%2C0.25%29%3B%0A%20%20box-shadow%3A%20inset%205px%205px%2010px%200px%20rgba%280%2C0%2C0%2C0.25%29%3B%0A%20%20width%3A100%25%3B%0A%20%20height%3A100%25%3B%0A%20%20background-size%3Acover%3B%0A%20%20background-position%3Acenter%20center%3B%0A%20%7D%20%20%0A%23rev_slider_7_1%20.metis%20.tp-bullet-title%20%7B%20%0A%20%20%20%20%20position%3Aabsolute%3B%20%0A%20%20%20%20%20bottom%3A50px%3B%0A%20%20%20%20%20margin-bottom%3A10px%3B%0A%20%20%20%20%20display%3Ainline-block%3B%0A%20%20%20%20%20left%3A50%25%3B%0A%20%20%20%20%20background%3A%23000%3B%0A%20%20%20%20%20background%3Argba%280%2C%200%2C%200%2C0.75%29%3B%0A%20%20%20%20%20color%3Argb%28255%2C%20255%2C%20255%29%3B%0A%20%20%20%20%20padding%3A10px%2030px%3B%0A%20%20%20%20%20border-radius%3A4px%3B%0A%20%20%20-webkit-border-radius%3A4px%3B%0A%20%20%20%20%20opacity%3A0%3B%0A%20%20%20%20%20%20transition%3Aall%200.3s%3B%0A%20%20%20%20-webkit-transition%3Aall%200.3s%3B%0A%20%20%20%20transform%3A%20translatez%280.001px%29%20translatex%28-50%25%29%20translatey%2814px%29%3B%0A%20%20%20%20transform-origin%3A50%25%20100%25%3B%0A%20%20%20%20-webkit-transform%3A%20translatez%280.001px%29%20translatex%28-50%25%29%20translatey%2814px%29%3B%0A%20%20%20%20-webkit-transform-origin%3A50%25%20100%25%3B%0A%20%20%20%20opacity%3A0%3B%0A%20%20%20%20white-space%3Anowrap%3B%0A%20%7D%0A%0A%23rev_slider_7_1%20.metis%20.tp-bullet%3Ahover%20.tp-bullet-title%20%7B%0A%20%20%20%20%20transform%3Arotatex%280deg%29%20translatex%28-50%25%29%3B%0A%20%20%20%20-webkit-transform%3Arotatex%280deg%29%20translatex%28-50%25%29%3B%0A%20%20%20%20opacity%3A1%3B%0A%7D%0A%0A%23rev_slider_7_1%20.metis%20.tp-bullet.selected%2C%0A%23rev_slider_7_1%20.metis%20.tp-bullet%3Ahover%20%20%7B%0Abackground%3A%20-moz-linear-gradient%28top%2C%20%20rgba%28255%2C%20255%2C%20255%2C%201%29%200%25%2C%20rgba%28119%2C%20119%2C%20119%2C%201%29%20100%25%29%3B%0Abackground%3A%20-webkit-gradient%28left%20top%2C%20left%20bottom%2C%20color-stop%280%25%2C%20rgba%28255%2C%20255%2C%20255%2C%201%29%29%2C%20color-stop%28100%25%2C%20rgba%28119%2C%20119%2C%20119%2C%201%29%29%29%3B%0Abackground%3A%20-webkit-linear-gradient%28top%2C%20rgba%28255%2C%20255%2C%20255%2C%201%29%200%25%2C%20rgba%28119%2C%20119%2C%20119%2C%201%29%20100%25%29%3B%0Abackground%3A%20-o-linear-gradient%28top%2C%20rgba%28255%2C%20255%2C%20255%2C%201%29%200%25%2C%20rgba%28119%2C%20119%2C%20119%2C%201%29%20100%25%29%3B%0Abackground%3A%20-ms-linear-gradient%28top%2C%20rgba%28255%2C%20255%2C%20255%2C%201%29%200%25%2C%20rgba%28119%2C%20119%2C%20119%2C%201%29%20100%25%29%3B%0Abackground%3A%20linear-gradient%28to%20bottom%2C%20rgba%28255%2C%20255%2C%20255%2C%201%29%200%25%2C%20rgba%28119%2C%20119%2C%20119%2C%201%29%20100%25%29%3B%0A%20%20%7D%0A%23rev_slider_7_1%20.metis%20.tp-bullet-title%3Aafter%20%7B%0A%20%20%20%20content%3A%22%20%22%3B%0A%20%20%20%20position%3Aabsolute%3B%0A%20%20%20%20left%3A50%25%3B%0A%20%20%20%20margin-left%3A-8px%3B%0A%20%20%20%20width%3A%200%3B%0A%20%20%20%20height%3A%200%3B%0A%20%20%20%20border-style%3A%20solid%3B%0A%20%20%20%20border-width%3A%208px%208px%200%208px%3B%0A%20%20%20%20border-color%3A%20rgba%280%2C%200%2C%200%2C0.75%29%20transparent%20transparent%20transparent%3B%0A%20%20%20%20bottom%3A-8px%3B%0A%20%20%20%7D%0A%0A%0A%0A%2F%2A%20VERTICAL%20RIGHT%20%2A%2F%0A%23rev_slider_7_1%20.metis.nav-dir-vertical.nav-pos-hor-right%20.tp-bullet-title%20%7B%20%0A%20%20%20margin-bottom%3A0px%3B%20top%3A50%25%3B%20right%3A50px%3B%20left%3Aauto%3B%20bottom%3Aauto%3B%20margin-right%3A10px%3B%20%20transform%3A%20translateX%28-10px%29%20translateY%28-50%25%29%3B-webkit-transform%3A%20translateX%28-10px%29%20translateY%28-50%25%29%3B%20%0A%7D%20%20%0A%23rev_slider_7_1%20.metis.nav-dir-vertical.nav-pos-hor-right%20.tp-bullet-title%3Aafter%20%7B%20%0A%20%20border-width%3A%2010px%200%2010px%2010px%3B%0A%20%20border-color%3A%20%20transparent%20transparent%20transparent%20rgba%280%2C%200%2C%200%2C0.75%29%20%3B%0A%20%20right%3A-10px%3B%0A%20%20left%3Aauto%3B%20%20%0A%20%20bottom%3Aauto%3B%0A%20%20top%3A10px%3B%20%20%20%20%0A%7D%0A%0A%0A%23rev_slider_7_1%20.metis.nav-dir-vertical.nav-pos-hor-right%20.tp-bullet%3Ahover%20.tp-bullet-title%7B%0A%20%20%20transform%3AtranslateY%28-50%25%29%20translateX%280px%29%3B%0A%20%20-webkit-transform%3AtranslateY%28-50%25%29%20translateX%280px%29%3B%0A%7D%0A%0A%2F%2A%20VERTICAL%20LEFT%20%26%26%20CENTER%2A%2F%0A%23rev_slider_7_1%20.metis.nav-dir-vertical.nav-pos-hor-left%20.tp-bullet-title%2C%0A%23rev_slider_7_1%20.metis.nav-dir-vertical.nav-pos-hor-center%20.tp-bullet-title%20%7B%20%0A%20%20%20margin-bottom%3A0px%3B%20top%3A50%25%3B%20left%3A50px%3B%20right%3Aauto%3B%20bottom%3Aauto%3B%20margin-left%3A10px%3B%20%20transform%3A%20translateX%2810px%29%20translateY%28-50%25%29%3B-webkit-transform%3A%20translateX%2810px%29%20translateY%28-50%25%29%3B%20%0A%7D%20%20%0A%23rev_slider_7_1%20.metis.nav-dir-vertical.nav-pos-hor-left%20.tp-bullet-title%3Aafter%2C%0A%23rev_slider_7_1%20.metis.nav-dir-vertical.nav-pos-hor-center%20.tp-bullet-title%3Aafter%20%7B%20%0A%20%20border-width%3A%2010px%2010px%2010px%200%3B%0A%20%20border-color%3A%20%20transparent%20rgba%280%2C%200%2C%200%2C0.75%29%20%20transparent%20transparent%20%3B%0A%20%20left%3A-2px%3B%0A%20%20right%3Aauto%3B%20%20%0A%20%20bottom%3Aauto%3B%0A%20%20top%3A10px%3B%20%20%20%20%0A%7D%0A%0A%0A%23rev_slider_7_1%20.metis.nav-dir-vertical.nav-pos-hor-left%20.tp-bullet%3Ahover%20.tp-bullet-title%2C%0A%23rev_slider_7_1%20.metis.nav-dir-vertical.nav-pos-hor-center%20.tp-bullet%3Ahover%20.tp-bullet-title%7B%0A%20%20%20transform%3AtranslateY%28-50%25%29%20translateX%280px%29%3B%0A%20%20-webkit-transform%3AtranslateY%28-50%25%29%20translateX%280px%29%3B%0A%7D%0A%0A%0A%2F%2A%20HORIZONTAL%20TOP%20%2A%2F%0A%23rev_slider_7_1%20.metis.nav-dir-horizontal.nav-pos-ver-top%20.tp-bullet-title%20%7B%20%0A%20%20%20margin-bottom%3A0px%3B%20top%3A50px%3B%20left%3A50%25%3B%20bottom%3Aauto%3B%20margin-top%3A10px%3B%20right%3Aauto%3B%20transform%3A%20translateX%28-50%25%29%20translateY%2810px%29%3B-webkit-transform%3A%20translateX%28-50%25%29%20translateY%2810px%29%3B%20%0A%7D%20%20%0A%23rev_slider_7_1%20.metis.nav-dir-horizontal.nav-pos-ver-top%20.tp-bullet-title%3Aafter%20%7B%20%0A%20%20border-width%3A%200%2010px%2010px%2010px%3B%0A%20%20border-color%3A%20%20transparent%20transparent%20rgba%280%2C%200%2C%200%2C0.75%29%20transparent%3B%0A%20%20right%3Aauto%3B%0A%20%20left%3A50%25%3B%0A%20%20margin-left%3A-10px%3B%0A%20%20bottom%3Aauto%3B%0A%20%20top%3A-10px%3B%0A%20%20%20%20%0A%7D%0A%0A%0A%23rev_slider_7_1%20.metis.nav-dir-horizontal.nav-pos-ver-top%20.tp-bullet%3Ahover%20.tp-bullet-title%7B%0A%20%20%20transform%3AtranslateX%28-50%25%29%20translatey%280px%29%3B%0A%20%20-webkit-transform%3AtranslateX%28-50%25%29%20translatey%280px%29%3B%0A%7D%0A%0A%0A");
					var htmlDiv = document.getElementById('rs-plugin-settings-inline-css');
					if(htmlDiv) {
						htmlDiv.innerHTML = htmlDiv.innerHTML + htmlDivCss;
					}
					else{
						var htmlDiv = document.createElement('div');
						htmlDiv.innerHTML = '<style>' + htmlDivCss + '</style>';
						document.getElementsByTagName('head')[0].appendChild(htmlDiv.childNodes[0]);
					}
				  </script>
				</div><!-- END REVOLUTION SLIDER --> 
			</div> <!-- .et_pb_text -->
			</div> <!-- .et_pb_column -->
					
			</div> <!-- .et_pb_row -->
				
			</div> <!-- .et_pb_section -->
<div class="g g-5"><div class="g-dyn a-16 c-1"><center><a onClick="ga('send','event','banner','click','Fowl Play Products / The Chicken Swing',1,{'nonInteraction':1});" href="https://www.fowlplayproducts.com/ "  target="_blank"><img onload="ga('send','event','banner','impression','Fowl Play Products / The Chicken Swing',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/uploads/2015/05/Banner-ad-3.jpg" /></a><center></div><div class="g-dyn a-1 c-2"><center><a onClick="ga('send','event','banner','click','Mango Languages Filler For Sept and October 2014',1,{'nonInteraction':1});" href="http://www.mangolanguages.com/mollygreen"  target="_blank"><img onload="ga('send','event','banner','impression','Mango Languages Filler For Sept and October 2014',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/banners/mangomolly-green-banner.png" /></a><center></div><div class="g-dyn a-23 c-3"><center><a onClick="ga('send','event','banner','click','Albert Whitman &amp; Company',1,{'nonInteraction':1});" href="http://www.albertwhitman.com/catalog/?taxonomy=topic&term=mindfulness"  target="_blank"><img onload="ga('send','event','banner','impression','Albert Whitman &amp; Company',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/uploads/2016/04/MollyGreen_Mindfulness.jpg" /></a><center></div><div class="g-dyn a-8 c-4"><center><a onClick="ga('send','event','banner','click','Considering Homeschooling',1,{'nonInteraction':1});" href="http://www.ConsideringHomeschooling.info"  target="_blank"><img onload="ga('send','event','banner','impression','Considering Homeschooling',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/banners/consideringhomeschoolingbanner728x90.jpg" /></a><center></div><div class="g-dyn a-5 c-5"><center><a onClick="ga('send','event','banner','click','Molly Green.com',1,{'nonInteraction':1});" href="http://mollygreen.com/subscribe/"  target="_blank"><img onload="ga('send','event','banner','impression','Molly Green.com',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/uploads/2015/04/MGM-Print-728x90.jpg"/></a><center></div><div class="g-dyn a-21 c-6"><center><a onClick="ga('send','event','banner','click','N82 Tactical, Inc.',1,{'nonInteraction':1});" href="http://www.n82tactical.com/"  target="_blank"><img onload="ga('send','event','banner','impression','N82 Tactical, Inc.',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/uploads/2016/01/700-X-100-BANNER.jpg" /></a><center></div><div class="g-dyn a-12 c-7"><center><a onClick="ga('send','event','banner','click','Down to Earth Seeds',1,{'nonInteraction':1});" href="http://www.DowntoEarthSeeds.com"  target="_blank"><img onload="ga('send','event','banner','impression','Down to Earth Seeds',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/uploads/2015/04/HeirloomSeeds728x90.jpg" /></a><center></div><div class="g-dyn a-20 c-8"><center><a onClick="ga('send','event','banner','click','Nite Guard',1,{'nonInteraction':1});" href="http://www.niteguard.com"  target="_blank"><img onload="ga('send','event','banner','impression','Nite Guard',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/uploads/2015/12/Website-Banner_728x90.jpg" /></a><center></div><div class="g-dyn a-27 c-9"><center><a onClick="ga('send','event','banner','click','Molly Green Mother\&#039;s Day Sale',1,{'nonInteraction':1});" href="http://mollygreen.com/MothersDay/"  target="_blank"><img onload="ga('send','event','banner','impression','Molly Green Mother\&#039;s Day Sale',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/uploads/2016/05/mday16-728x90.jpg"/></a><center></div><div class="g-dyn a-3 c-10"><center><a onClick="ga('send','event','banner','click','DoTerra Lisa Barthuly link',1,{'nonInteraction':1});" href="http://www.mydoTERRA.com/PreparedHomestead/#/"  target="_blank"><img onload="ga('send','event','banner','impression','DoTerra Lisa Barthuly link',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/uploads/2015/09/doTERRAbanner700x100A.jpg" /></a><center></div><div class="g-dyn a-22 c-11"><center><a onClick="ga('send','event','banner','click','VidAngel',1,{'nonInteraction':1});" href="http://www.shareasale.com/u.cfm?d=324613&m=52993&u=1285716" target="_blank"><img onload="ga('send','event','banner','impression','VidAngel',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/uploads/2016/04/LongBanner2.png" /></a><center></div><div class="g-dyn a-11 c-12"><center><a onClick="ga('send','event','banner','click','Harvest Right, LLC.',1,{'nonInteraction':1});" href="http://www.harvestright.com"  target="_blank"><img onload="ga('send','event','banner','impression','Harvest Right, LLC.',2,{'nonInteraction':1});" src="http://mollygreen.com/wp-content/uploads/2015/12/web-banners_LDSLiving_728x90.jpg" /></a><center></div></div>					</div> <!-- .entry-content -->

				
				</article> <!-- .et_pb_post -->

			

</div> <!-- #main-content -->


			<footer id="main-footer">
				
<div class="container">
	<div id="footer-widgets" class="clearfix">
	<div class="footer-widget"><div id="text-15" class="fwidget et_pb_widget widget_text"><h4 class="title">Latest Issue</h4>			<div class="textwidget"><a href="http://mollygreenonline.com/"  target="_blank"><img class="aligncenter size-medium wp-image-15050" src="https://mollygreen.com/wp-content/uploads/2016/03/MGM-Spring-2016-3D-Cover-72255.png" alt="mg cover" width="250" height="250" /></a>

From the Makers of </br><b><i>The Old Schoolhouse</i></b>® Magazine</div>
		</div> <!-- end .fwidget --></div> <!-- end .footer-widget --><div class="footer-widget"><div id="nav_menu-2" class="fwidget et_pb_widget widget_nav_menu"><h4 class="title">Links</h4><div class="menu-footer-container"><ul id="menu-footer" class="menu"><li id="menu-item-13027" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-13027"><a href="http://mollygreen.com/mollyblog">Molly Green Blog</a></li>
<li id="menu-item-21644" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-21644"><a href="http://www.mollygreenmediakit.com">Advertise with Us</a></li>
<li id="menu-item-10344" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-10344"><a href="http://mollygreen.com/submission_information_for_molly_green_magazine/">Submit Articles</a></li>
<li id="menu-item-16571" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16571"><a href="http://mollygreen.com/product/molly-green-annual-print-subscription/">Subscribe</a></li>
<li id="menu-item-9636" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9636"><a href="http://mollygreen.com/privacy_policy/">Privacy Policy</a></li>
<li id="menu-item-9921" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-9921"><a href="http://mollygreen.com/terms-of-use/">Terms of Use</a></li>
<li id="menu-item-15851" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-15851"><a target="_blank" href="http://mollygreen.com/mg-apps/">Molly Green Apps</a></li>
</ul></div></div> <!-- end .fwidget --></div> <!-- end .footer-widget --><div class="footer-widget"><div id="text-14" class="fwidget et_pb_widget widget_text"><h4 class="title">Get In Touch</h4>			<div class="textwidget"><p style="color: #000000;"><span style="color: #ffffff;">Molly Green, LLC</span></p>
<p style="color: #000000;"><span style="color: #ffffff;">PO Box 8426</span></p>
<p style="color: #000000;"><span style="color: #ffffff;">Gray, TN 37615</span></p>
<p style="color: #000000;"><span style="color: #ffffff;">1.888.718.HOME</span></p>
<p style="color: #000000;"><span style="color: #ffffff;"><a style="color: #83929f;" href="mailto:molly@mollygreen.com"><span style="color: #ffffff;">Molly@MollyGreen.com</span></a></span></p>
&nbsp;

&nbsp;

&nbsp;</div>
		</div> <!-- end .fwidget --><div id="text-18" class="fwidget et_pb_widget widget_text">			<div class="textwidget">Sponsored in part by <a href="http://www.Movieguide.org"   target="_blank">MovieGuide.org</a></div>
		</div> <!-- end .fwidget --></div> <!-- end .footer-widget --><div class="footer-widget last"><div id="bp_core_login_widget-2" class="fwidget et_pb_widget widget_bp_core_login_widget buddypress widget"><h4 class="title">Members</h4>
		
			
			<form name="bp-login-form" id="bp-login-widget-form" class="standard-form" action="http://mollygreen.com/wp-login.php" method="post">
				<label for="bp-login-widget-user-login">Username</label>
				<input type="text" name="log" id="bp-login-widget-user-login" class="input" value="" />

				<label for="bp-login-widget-user-pass">Password</label>
				<input type="password" name="pwd" id="bp-login-widget-user-pass" class="input" value=""  spellcheck="false" autocomplete="off" />

				<div class="forgetmenot"><label for="bp-login-widget-rememberme"><input name="rememberme" type="checkbox" id="bp-login-widget-rememberme" value="forever" /> Remember Me</label></div>

				<input type="submit" name="wp-submit" id="bp-login-widget-submit" value="Log In" />

				
					<span class="bp-login-widget-register-link"><a href="http://mollygreen.com/register/" title="Register for a new account">Register</a></span>

				
				
			</form>

			
		</div> <!-- end .fwidget --></div> <!-- end .footer-widget -->	</div> <!-- #footer-widgets -->
</div>	<!-- .container -->

		
				<div id="footer-bottom">
					<div class="container clearfix">
				
						<p id="footer-info">Copyright &copy; 2014 - 2016 <a href="http://mollygreen.com">Molly Green, LLC</a>. All Rights Reserved.</p>
					</div>	<!-- .container -->
				</div>
			</footer> <!-- #main-footer -->
		</div> <!-- #et-main-area -->


	</div> <!-- #page-container -->

<!-- TRB 2015-04-18 wp_footer was here -->
<!-- Quantcast Tag -->
<script type="text/javascript">
var _qevents = _qevents || [];

(function() {
var elem = document.createElement('script');
elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js";
elem.async = true;
elem.type = "text/javascript";
var scpt = document.getElementsByTagName('script')[0];
scpt.parentNode.insertBefore(elem, scpt);
})();

_qevents.push({
qacct:"p-y46F4XJJXF5nF"
});
</script>

<noscript>
<div style="display:none;">
<img src="//pixel.quantserve.com/pixel/p-y46F4XJJXF5nF.gif" border="0" height="1" width="1" alt="Quantcast"/>
</div>
</noscript>
<!-- End Quantcast tag -->

<!-- Generated in 2.276 seconds. (279 q) -->

	<script>jQuery(document).ready(function(){jQuery(".kiwi-logo-carousel-default").bxSlider({mode:"horizontal",speed:500,slideMargin:0,infiniteLoop:true,hideControlOnEnd:false,captions:false,ticker:false,tickerHover:false,adaptiveHeight:false,responsive:true,pager:false,controls:true,autoControls:false,minSlides:1,maxSlides:4,moveSlides:1,slideWidth:200,auto:true,pause:4000,useCSS:false});jQuery(".kiwi-logo-carousel-stores").bxSlider({mode:"horizontal",speed:30000,slideMargin:0,infiniteLoop:true,hideControlOnEnd:false,captions:false,ticker:true,tickerHover:false,adaptiveHeight:false,responsive:true,pager:false,controls:true,autoControls:false,minSlides:1,maxSlides:4,moveSlides:1,slideWidth:200,auto:false,pause:4000,useCSS:false});});</script>        <style type="text/css" id="et-builder-advanced-style">
				
body #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button:hover:after { 
						
						opacity: 1; }
body #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button:hover { 
					
					
					
					
					padding-left:0.7em; padding-right: 2em; }
body #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button:after { font-size:32px; 
						
						
						opacity:0; }
body.et_button_custom_icon #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button:after { font-size:20px; }
.et_pb_slide_4.et_pb_slider_with_text_overlay .et_pb_slide_content { -webkit-border-bottom-right-radius: 3px;
					-webkit-border-bottom-left-radius: 3px;
					-moz-border-radius-bottomright: 3px;
					-moz-border-radius-bottomleft: 3px;
					border-bottom-right-radius: 3px;
					border-bottom-left-radius: 3px; }
.et_pb_slide_4.et_pb_slider_with_text_overlay h2.et_pb_slide_title { -webkit-border-top-left-radius: 3px;
					-webkit-border-top-right-radius: 3px;
					-moz-border-radius-topleft: 3px;
					-moz-border-radius-topright: 3px;
					border-top-left-radius: 3px;
					border-top-right-radius: 3px; }
body #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button { 
					
					
					
					
					
					font-size:20px;
					font-weight: bold !important; }
.et_pb_slide_3.et_pb_slider_with_text_overlay .et_pb_slide_content { -webkit-border-bottom-right-radius: 3px;
					-webkit-border-bottom-left-radius: 3px;
					-moz-border-radius-bottomright: 3px;
					-moz-border-radius-bottomleft: 3px;
					border-bottom-right-radius: 3px;
					border-bottom-left-radius: 3px; }
.et_pb_slide_1.et_pb_slider_with_text_overlay h2.et_pb_slide_title { -webkit-border-top-left-radius: 3px;
					-webkit-border-top-right-radius: 3px;
					-moz-border-radius-topleft: 3px;
					-moz-border-radius-topright: 3px;
					border-top-left-radius: 3px;
					border-top-right-radius: 3px; }
.et_pb_slide_0.et_pb_slider_with_text_overlay .et_pb_slide_content { -webkit-border-bottom-right-radius: 3px;
					-webkit-border-bottom-left-radius: 3px;
					-moz-border-radius-bottomright: 3px;
					-moz-border-radius-bottomleft: 3px;
					border-bottom-right-radius: 3px;
					border-bottom-left-radius: 3px; }
.et_pb_slide_1.et_pb_slider_with_text_overlay .et_pb_slide_content { -webkit-border-bottom-right-radius: 3px;
					-webkit-border-bottom-left-radius: 3px;
					-moz-border-radius-bottomright: 3px;
					-moz-border-radius-bottomleft: 3px;
					border-bottom-right-radius: 3px;
					border-bottom-left-radius: 3px; }
.et_pb_slide_2.et_pb_slider_with_text_overlay h2.et_pb_slide_title { -webkit-border-top-left-radius: 3px;
					-webkit-border-top-right-radius: 3px;
					-moz-border-radius-topleft: 3px;
					-moz-border-radius-topright: 3px;
					border-top-left-radius: 3px;
					border-top-right-radius: 3px; }
.et_pb_slide_3.et_pb_slider_with_text_overlay h2.et_pb_slide_title { -webkit-border-top-left-radius: 3px;
					-webkit-border-top-right-radius: 3px;
					-moz-border-radius-topleft: 3px;
					-moz-border-radius-topright: 3px;
					border-top-left-radius: 3px;
					border-top-right-radius: 3px; }
.et_pb_slide_2.et_pb_slider_with_text_overlay .et_pb_slide_content { -webkit-border-bottom-right-radius: 3px;
					-webkit-border-bottom-left-radius: 3px;
					-moz-border-radius-bottomright: 3px;
					-moz-border-radius-bottomleft: 3px;
					border-bottom-right-radius: 3px;
					border-bottom-left-radius: 3px; }
.et_pb_slide_0.et_pb_slider_with_text_overlay h2.et_pb_slide_title { -webkit-border-top-left-radius: 3px;
					-webkit-border-top-right-radius: 3px;
					-moz-border-radius-topleft: 3px;
					-moz-border-radius-topright: 3px;
					border-top-left-radius: 3px;
					border-top-right-radius: 3px; }

@media only screen and ( max-width: 980px ) {
	body #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button:hover { letter-spacing:0px; }
	body #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button,body #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button:after { 
								letter-spacing:0px; }
}

@media only screen and ( max-width: 767px ) {
	body #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button:hover { letter-spacing:0px; }
	body #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button,body #page-container .et_pb_slider .et_pb_slide_4.et_pb_slide .et_pb_button:after { 
								letter-spacing:0px; }
}
			</style><style type="text/css" id="et-builder-page-custom-style">
				 .et_pb_section { background-color: ; }
			</style><!-- This site is converting visitors into subscribers and customers with OptinMonster - http://optinmonster.com --><div id="om-ye3optiis6-lightbox-holder"></div><script>var ye3optiis6_lightbox,ye3optiis6_lightbox_poll=function(){var r=0;return function(n,l){clearInterval(r),r=setInterval(n,l)}}();!function(e,t,n){if(e.getElementById(n)){ye3optiis6_lightbox_poll(function(){if(window['om_loaded']){if(!ye3optiis6_lightbox){ye3optiis6_lightbox=new OptinMonsterApp();return ye3optiis6_lightbox.init({u:"2849.240463",staging:0,dev:0});}}},25);return;}var d=false,o=e.createElement(t);o.id=n,o.src="//a.optnmnstr.com/app/js/api.min.js",o.onload=o.onreadystatechange=function(){if(!d){if(!this.readyState||this.readyState==="loaded"||this.readyState==="complete"){try{d=om_loaded=true;ye3optiis6_lightbox=new OptinMonsterApp();ye3optiis6_lightbox.init({u:"2849.240463",staging:0,dev:0});o.onload=o.onreadystatechange=null;}catch(t){}}}};(document.getElementsByTagName("head")[0]||document.documentElement).appendChild(o)}(document,"script","omapi-script");</script><!-- / OptinMonster -->		<script type="text/javascript">
			function revslider_showDoubleJqueryError(sliderID) {
				var errorMessage = "Revolution Slider Error: You have some jquery.js library include that comes after the revolution files js include.";
				errorMessage += "<br> This includes make eliminates the revolution slider libraries, and make it not work.";
				errorMessage += "<br><br> To fix it you can:<br>&nbsp;&nbsp;&nbsp; 1. In the Slider Settings -> Troubleshooting set option:  <strong><b>Put JS Includes To Body</b></strong> option to true.";
				errorMessage += "<br>&nbsp;&nbsp;&nbsp; 2. Find the double jquery.js include and remove it.";
				errorMessage = "<span style='font-size:16px;color:#BC0C06;'>" + errorMessage + "</span>";
					jQuery(sliderID).show().html(errorMessage);
			}
		</script>
		<script>
  (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  })(window,document,'script','//www.google-analytics.com/analytics.js','ga');

  ga('create', 'UA-55121126-1', 'auto');
  ga('send', 'pageview');

</script>



<script type='text/javascript' src='http://mollygreen.com/wp-content/themes/Divi/includes/builder/scripts/frontend-builder-global-functions.js?ver=2.7.3'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/adrotate-pro/library/jquery.adrotate.dyngroup.js'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/bbpress/templates/default/js/editor.js?ver=2.5.8-5815'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-includes/js/comment-reply.js?ver=4.5'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var FUE_Front = {"is_logged_in":"","ajaxurl":"http:\/\/mollygreen.com\/wp-admin\/admin-ajax.php"};
/* ]]> */
</script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/woocommerce-follow-up-emails/templates/js/fue-front.js?ver=4.4.12'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var wc_add_to_cart_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?u=onfire&wc-ajax=%%endpoint%%","i18n_view_cart":"View Cart","cart_url":"http:\/\/mollygreen.com\/cart\/","is_cart":"","cart_redirect_after_add":"yes"};
/* ]]> */
</script>
<script type='text/javascript' src='//mollygreen.com/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.js?ver=2.5.5'></script>
<script type='text/javascript' src='//mollygreen.com/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.js?ver=2.70'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var woocommerce_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?u=onfire&wc-ajax=%%endpoint%%"};
/* ]]> */
</script>
<script type='text/javascript' src='//mollygreen.com/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.js?ver=2.5.5'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var wc_cart_fragments_params = {"ajax_url":"\/wp-admin\/admin-ajax.php","wc_ajax_url":"\/?u=onfire&wc-ajax=%%endpoint%%","fragment_name":"wc_fragments"};
/* ]]> */
</script>
<script type='text/javascript' src='//mollygreen.com/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.js?ver=2.5.5'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/themes/Divi/includes/builder/scripts/jquery.mobile.custom.min.js?ver=2.7.3'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/themes/Divi/js/custom.js?ver=2.7.3'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/themes/Divi/includes/builder/scripts/jquery.fitvids.js?ver=2.7.3'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/themes/Divi/includes/builder/scripts/waypoints.min.js?ver=2.7.3'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/themes/Divi/includes/builder/scripts/jquery.magnific-popup.js?ver=2.7.3'></script>
<script type='text/javascript'>
/* <![CDATA[ */
var et_pb_custom = {"ajaxurl":"http:\/\/mollygreen.com\/wp-admin\/admin-ajax.php","images_uri":"http:\/\/mollygreen.com\/wp-content\/themes\/Divi\/images","builder_images_uri":"http:\/\/mollygreen.com\/wp-content\/themes\/Divi\/includes\/builder\/images","et_frontend_nonce":"b69aadf71e","subscription_failed":"Please, check the fields below to make sure you entered the correct information.","et_ab_log_nonce":"9bced7993e","fill_message":"Please, fill in the following fields:","contact_error_message":"Please, fix the following errors:","invalid":"Invalid email","captcha":"Captcha","prev":"Prev","previous":"Previous","next":"Next","wrong_captcha":"You entered the wrong number in captcha.","is_builder_plugin_used":"","is_divi_theme_used":"1","widget_search_selector":".widget_search","is_ab_testing_active":"","page_id":"8982","unique_test_id":"","ab_bounce_rate":"5","is_cache_plugin_active":"no","is_shortcode_tracking":""};
/* ]]> */
</script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/themes/Divi/includes/builder/scripts/frontend-builder-scripts.js?ver=2.7.3'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-includes/js/wp-embed.js?ver=4.5'></script>
<script type='text/javascript' src='http://mollygreen.com/wp-content/plugins/kiwi-logo-carousel/third-party/jquery.bxslider/jquery.bxslider.js?ver=4.5'></script>
<!-- WooCommerce JavaScript -->
<script type="text/javascript">
jQuery(function($) {

			$( '.add_to_cart_button:not(.product_type_variable, .product_type_grouped)' ).click( function() {
				ga('send', 'event', 'Products', 'Add to Cart', ($(this).data('product_sku')) ? ('SKU: ' + $(this).data('product_sku')) : ('#' + $(this).data('product_id')));
			});
		

ga( 'send', 'pageview' ); 
});
</script>

<!--Plugin WP Missed Schedule Active - Secured with Genuine Authenticity KeyTag-->

<!-- This site is patched against a big problem not solved since WordPress 2.5 -->

<!-- AdRotate JS -->
<script type="text/javascript">
jQuery(document).ready(function(){
if(jQuery.fn.gslider) {
	jQuery('.g-1').gslider({ groupid: 1, speed: 7000 });
	jQuery('.g-2').gslider({ groupid: 2, speed: 7000 });
	jQuery('.g-3').gslider({ groupid: 3, speed: 7000 });
	jQuery('.g-4').gslider({ groupid: 4, speed: 7000 });
	jQuery('.g-5').gslider({ groupid: 5, speed: 7000 });
}
});
</script>
<!-- /AdRotate JS -->

	    <script type="text/javascript">var omapi_localized = { ajax: 'http://mollygreen.com/wp-admin/admin-ajax.php?optin-monster-ajax-route=1', nonce: 'aee71231ac' };</script>
	    <!-- Piwik 
<script type="text/javascript">
  var _paq = _paq || [];
  _paq.push(['trackPageView']);
  _paq.push(['enableLinkTracking']);
  _paq.push(['trackAllContentImpressions']); //for AdRotate Pro
  (function() {
    var u="//stats.mollygreen.com/";
    _paq.push(['setTrackerUrl', u+'piwik.php']);
    _paq.push(['setSiteId', 1]);
    var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
    g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
  })();
</script>
<noscript><p><img src="//stats.mollygreen.com/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
-->
<!-- End Piwik Code -->
</body>
</html>
