/*
	Theme Name: La Bella Vita Cucina
	Description: La Bella Vita Cucina is a custom theme created for the Genesis Framework.
	Author: 
	Author URI: 	
 
	Version: 1.0
 
	Tags: one-column, two-columns, three-columns, fixed-width, custom-menu, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready
 
	Template: genesis
	Template Version: 1.9
 
	License: GPL-2.0+
	License URI: http://www.opensource.org/licenses/gpl-license.php 
*/
 

/* Table of Contents

	01 Import Fonts
	02 Defaults
	03 Typography
		- Font Color
		- Font Family
		- Font Size
		- Font Miscellaneous
	04 Layout
		- Structure
		- 1182px CSS Grid
		- Header
		- Main Content
		- Post Info & Meta
		- Column Classes
		- Miscellaneous
	05 Menus
		- Primary Navigation Extras
	06 Headings
	07 Lists
	08 Post Navigation
	09 Comments
	10 Sidebars
	11 Footer
		- Footer Widgets
	12 Forms & Buttons
		- Gravity Forms
	13 Images & Captions
	14 Media Queries
		- max-width: 1024px
		- max-width: 768px
		- max-width: 480px

*/


/*
01 Import Fonts
---------------------------------------------------------------------------------------------------- */

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,700|Raleway);

/*
02 Defaults
---------------------------------------------------------------------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
input, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	border: 0;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 100%; /* 16px browser default */
}

body {
/*	background: url(images/top.png) repeat-x top left;*/
/*	background-color: #fff;
	line-height: 1;*/
}

body,
input,
select,
textarea,
.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3 {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*a,
a:visited,
button,
input[type="button"],
input[type="submit"],
.btn {
	-moz-transition: all 0.1s ease-in-out;
	-webkit-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;
}*/

::-moz-selection {
	background-color: #686581;
	color: #fff;
}

::selection {
	background-color: #686581;
	color: #fff;
}

a img {
	border: none;
}


/*
03 Typography
-------------------------------------------------------------------------------------------------------

	This section covers font colors, families, size, styles and weight.

	This style sheet uses rem values with a pixel fallback.
	The rem values are calculated per the examples below:

	12 / 16 =		0.75rem
	14 / 16 =		0.875rem
	16 / 16 =		1rem	
	18 / 16 =		1.125rem
	20 / 16 =		1.25rem
	24 / 16 =		1.5rem
	30 / 16 =		1.875rem
	36 / 16 =		2.25rem
	42 / 16 =		2.625rem
	48 / 16 =		3rem
	
	Further reading on the use and compatibility of rems:
	
	http://caniuse.com/rem
	http://snook.ca/archives/html_and_css/font-size-with-rem
	
*/

/* 03a - Font Color ----------- */

body,
h2 a,
h2 a:visited,
h4.widgettitle a,
input,
.author,
.date,
.genesis-nav-menu a,
.genesis-nav-menu li li a,
.genesis-nav-menu li li a:link,
.genesis-nav-menu li li a:visited,
.post-comments,
#title a,
#title a:hover {
	color: #555555;
}

a,
h2 a {
	color: #686501;
}

h1 {
	color: #686581;
}

a:hover, h2 a:hover {
	color: #686581;
	text-decoration: none;
}

.genesis-nav-menu li a:hover,
.genesis-nav-menu li:hover a,
.genesis-nav-menu li li a:hover,
.genesis-nav-menu .current-menu-item a {
	background-color: #E2E1CE;
}

.post-info,
.post-meta,
#description {
	color: #636363;
}

blockquote::before,
blockquote p,
input,
select,
textarea {
	color: #999;
}

button,
input[type="button"],
input[type="submit"],
.btn,
.genesis-nav-menu .highlight-menu-item a,
.genesis-nav-menu .highlight-menu-item a:hover,
.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	color: #fff;
}

/* 03b - Font Family ----------- */

body,
input,
textarea,
.author-box h1 {
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a,
#title {
	font-family: 'Raleway', sans-serif;
}

/* 03c - Font Size ----------- */

#title {
	font-size: 42px;
	font-size: 2.625rem;
}

h1,
.entry-title,
.entry-title a {
	font-size: 22px;
	font-size: 1.375rem;
}

/*blockquote::before {
	font-size: 32px;
	font-size: 2rem;
}*/

h2 {
	font-size: 30px;
	font-size: 1.875rem;
}

h3 {
	font-size: 24px;
	font-size: 1.5rem;
}

h4,
.archive-title,
.taxonomy-description h1,
.widgettitle {
	font-size: 20px;
	font-size: 1.25rem;
}

h5 {
	font-size: 18px;
	font-size: 1.125rem;
}

h6,
.author-box h1,
.sidebar h2 a {
	font-size: 14px;
	font-size: 1rem;
}

input,
select,
textarea,
.post-info,
.post-meta,
.wp-caption,
#footer p {
	font-size: 12px;
	font-size: 0.875rem;
}

.genesis-nav-menu {
	font-size: 16px;
	font-size: 1rem;
}
/* 03d - Font Miscellaneous ----------- */

blockquote p {
	font-style: italic;
}

cite {
	font-style: normal;
}

button,
input[type="button"],
input[type="submit"],
h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.entry-title a,
.genesis-nav-menu,
.post-comments,
.post-info .author,
.post-info .date,
.wp-caption,
#footer p,
#title {
	font-weight: 400;
}

.wp-caption {
	text-align: center;
}

h2 a,
h2 a:visited,
.genesis-nav-menu a,
.navigation li a,
.widgettitle a,
#title a {
	text-decoration: none;
}


/*
04 Layout
---------------------------------------------------------------------------------------------------- */

/* 04a - Structure ----------- */

body {
	background-color: #fff;
}

#wrap {
	background: #fff url(images/swirl-bg.png) center top no-repeat;
	width: 1200px;
	margin: 0 auto;
}

#inner {
	margin: 0 auto;
	max-width: 1182px;
	clear: both;
	overflow: hidden;
/*	padding-top: 40px;
	padding-top: 2.5rem;*/
}

#header .wrap,
#footer .wrap {
	margin: 0 auto;
	max-width: 1182px;
}

#nav .wrap {
	margin: 0 auto;
	max-width: 1152px;
}

/* 04b - 1182px CSS Grid ----------- */

#sidebar-alt {
	width: 15.277777777%; /* 176px / 1182px */
}

.footer-widgets-1,
.footer-widgets-2,
.footer-widgets-3,
.sidebar,
#header .widget-area {
	width: 32.555555555%; /* 352px / 1182px */
}

.sidebar-split-left {
	display: inline;
	float: left;
	width: 48%;
}
	
.sidebar-split-right {
	overflow: hidden;
	display: inline;
	float: right;
	width: 48%;
}

.sidebar-split-bottom {
	clear: both;
	width: 100%;
}

/*.home-bottom {
	overflow: hidden;
	width: 100% /* 352px / 1182px *!/;
	background: #f5f5f5;
}*/


/** CUTE HEADER ICONS */

#cuteheadericons a {
	height: 95px;
	display: inline-block;
}

#header .wrap {
	position: relative;
}

#cuteheadericons {
	width: ;
	height: ;
	position: absolute;
	right: 22px;
	top: 35px;
}

#reallifeicon {
	background: url(images/sprite.png) -11px -112px no-repeat;
	width: 80px;
}

#reallifeicon:hover {
	background: url(images/sprite.png) -11px -222px no-repeat;
	width: 80px;
}

#travelicon {
	background: url(images/sprite.png) -90px -112px no-repeat;
	width: 125px;
}

#travelicon:hover {
	background: url(images/sprite.png) -90px -222px no-repeat;
	width: 125px;
}

#recipesicon {
	background: url(images/sprite.png) -215px -112px no-repeat;
	width: 90px;
}

#recipesicon:hover {
	background: url(images/sprite.png) -215px -222px no-repeat;
	width: 90px;
}

#bucketlisticon {
	background: url(images/sprite.png) -310px -112px no-repeat;
	width: 100px;
}

#bucketlisticon:hover {
	background: url(images/sprite.png) -310px -222px no-repeat;
	width: 100px;
}

/** SOCIAL MEDIA BUTTONS */

#endofpostsubscribe {
	display: block;
	float: left;
	background: url("images/subscribe-bg.png") no-repeat scroll left top #FCF6DC;
	border: 4px double #BBBBBB;
	overflow: hidden;
	padding: 15px;
	margin-bottom: 30px;
}

#socialbox {
	float: right;
	margin: 5px 15px 10px 0;
	overflow: hidden;
}

#endofpostsocials {
	overflow: hidden;
	display: block;
	text-align: center;	
}

#socialbox a, #endofpostsocials a {
	width: 26px;
	height: 26px;
	margin: 0 2px;
	display: inline-block;
}

#fbicon {
	background: url(images/sprite.png) -74px -4px no-repeat;
}

#fbicon:hover {
	background: url(images/sprite.png) -74px -34px no-repeat;
}

#twittericon {
	background: url(images/sprite.png) -249px -4px no-repeat;
}

#twittericon:hover {
	background: url(images/sprite.png) -249px -34px no-repeat;
}

#pinteresticon {
	background: url(images/sprite.png) -39px -4px no-repeat;
}

#pinteresticon:hover {
	background: url(images/sprite.png) -39px -34px no-repeat;
}

#instagramicon {
	background: url(images/sprite.png) -144px -4px no-repeat;
}

#instagramicon:hover {
	background: url(images/sprite.png) -144px -34px no-repeat;
}

#googleplusicon {
	background: url(images/sprite.png) -109px -4px no-repeat;
}

#googleplusicon:hover {
	background: url(images/sprite.png) -109px -34px no-repeat;
}

#stumbleuponicon {
	background: url(images/sprite.png) -180px -4px no-repeat;
}

#stumbleuponicon:hover {
	background: url(images/sprite.png) -180px -34px no-repeat;
}

#emailicon {
	background: url(images/sprite.png) -213px -4px no-repeat;
}

#emailicon:hover {
	background: url(images/sprite.png) -213px -34px no-repeat;
}

#rssicon {
	background: url(images/sprite.png) -4px -4px no-repeat;
}

#rssicon:hover {
	background: url(images/sprite.png) -4px -34px no-repeat;
}

#welcomebox, #welcome-box {
/*	margin-top: 4px;
	margin-top: 0.25rem;
	margin-bottom: 32px;
	margin-bottom: 2rem;*/
	padding: 14px 12px;
	padding: 0.875rem 0.75rem;
/*	overflow: hidden;*/
}

#welcomebox a, #welcome-box a {
	width: 355px;
	height: 200px;
	display: block;
	margin: 0 auto;
}

#photo {
	background: url(images/sprite.png) -375px -6px no-repeat;
}

#welcometext {
	display: inline-block;
	overflow: hidden;
}

#welcometext img {
	vertical-align: text-top;
	padding: 4px;
	border: 1px solid #BBBBBB;
}

#welcometext p {
	font-size: 15px;
	color: #333;
}

.welcomephoto {
	float: left;
	margin-right: 10px;
}

.welcome-title {
	text-align: center;
	display: block;
	overflow: hidden;
	font-family: 'Raleway',sans-serif;
	font-size: 26px;
	color: #93B12D;
	margin-top: 10px;
}

.welcome-promise {
	text-align: center;
	display: block;
	overflow: hidden;
	margin-bottom: 10px;
}

#subscribe-area {
	display: block;
	overflow: hidden;
	clear: both;
	margin: 0 auto;
}

.mimi_field_action {
	display: inline-block;
	overflow: hidden;
}

#signup_email {
	padding: 4px;
	min-width: 210px;
	border-radius: 5px 5px 5px 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	-moz-border-radius: 5px 5px 5px 5px;
}

.bmsubscribe-end #signup_email {
	padding: 8px 4px;
}

fieldset {
	border: none;
	text-align: center;
	margin-top: 10px;
	padding-bottom: 5px;
}

.mimi_field_text {
	display: inline-block;
	overflow: hidden;
	height: 35px;
}

.bmsubscribe {
	background: url(images/sprite.png) -6px -702px no-repeat;
	height: 88px;
	width: 328px;
}

.bmsubscribe-end {
	margin: 0 auto 5px;
	text-align: center;
}

.forminputs {
	float: right;
	margin-top: 48px;
	width: 285px;
}

.bmsubscribe {
	background: url(images/sprite.png) -4px -81px no-repeat;
	height: 88px;
	width: 360px;
}

.forminputs {
	float: right;
	margin: 48px 25px 0 0;
	width: 285px;
}

.forminputs-end {
	clear: both;
	display: block;
	text-align: center;
	margin-bottom: 10px;
}

.bmsubscribe input[type="submit"] {
	background-color: #FFFFFF;
	color: #686501;
	padding: 4px;
	padding: 0.25rem;
	display: inline-block;
}

.bmsubscribe-end input[type="submit"] {
	padding: 8px;
	padding: 0.5rem;
	display: inline-block;
}

.bmsubscribe input[type="text"] {
	display: inline-block;
	padding: 4px;
	padding: 0.25rem;
	width: 80%;
}

.bmsubscribe-end input[type="text"] {
	display: inline-block;
	padding: 8px;
	padding: 0.5rem;
	width: 40%;
}

/** POST DIVIDER */
#custompostdivider {
	height: 85px;
	background: url(images/sprite.png) 0 -219px no-repeat;
	margin-left: 30px;
}

/** CATEGORY BUTTONS IN SIDEBAR */

#catbuttons {
	background: #F2F2F2;
	border-radius: 10px 10px 10px 10px;
	-khtml-border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
/*	border-bottom: 1px solid #ccc;*/
	margin-bottom: 32px;
	margin-bottom: 2rem;
	padding: 14px 12px;
	padding: 0.875rem 0.75rem;
	overflow: hidden;
}

#catbuttons a {
	width: 328px;
	height: 51px;
	display: inline-block;
	margin: 0 auto;
}

#catbuttons a:hover {
	opacity: 0.75;
}

#favorite-things {
	background: url(images/sprite.png) -8px -796px no-repeat;
}

#toolbox {
	background: url(images/sprite.png) -8px -849px no-repeat;
}

#howtohomeschool {
	background: url(images/sprite.png) -8px -899px no-repeat;
}

#ocd-cures {
	background: url(images/sprite.png) -8px -950px no-repeat;
}

#crafts {
	background: url(images/sprite.png) -4px -1911px no-repeat;
}

#frugal-finds {
	background: url(images/sprite.png) -2px -1965px no-repeat;
}

/** SOCIAL SHARING SECTION AT END OF POST */
#signature {
	background: url(images/sprite.png) no-repeat scroll -400px -540px;
	margin-left: 20px;
	width: 100px;
	height: 60px;
}

#endofpostmeta {
    background: url(images/flags.png) no-repeat scroll right bottom transparent;
    border-top: 1px solid #777;
    margin-top: 10px;
    overflow: hidden;
    padding: 10px 8px 32px;
}
.endofpostmeta a {
    color: #303030;
}
.endofpostmeta a:hover {
    color: #10AFCC;
    text-decoration: none;
}
.endofpostmeta .postmeta {
    float: right;
    padding-left: 20px;
    position: relative;
}

.sharingtext {
	display: inline-block;
	float: left;
	padding-right: 10px;
}

.facebookshare {
    background: url(images/buttons_off.png) no-repeat scroll 0 0 #CFCFCD;
    float: left;
    height: 20px;
    margin-top: 3px;
    width: 20px;
}
.googleplusshare {
    background: url(images/buttons_off.png) no-repeat scroll -20px 0 #CFCFCD;
    float: left;
    height: 20px;
    margin: 3px 0 0 6px;
    width: 20px;
}
.pinterestshare {
    background: url(images/buttons_off.png) no-repeat scroll -60px 0 #CFCFCD;
    float: left;
    height: 20px;
    margin: 3px 0 0 6px;
    width: 20px;
}
.twittershare {
    background: url(images/buttons_off.png) no-repeat scroll -40px 0 #CFCFCD;
    float: left;
    height: 20px;
    margin: 3px 0 0 6px;
    width: 20px;
}
.facebook_button, .googleplus_button, .twitter_button, .pinterest_button {
    display: block;
    font-size: 0;
    height: 20px;
    line-height: 0;
    position: relative;
    text-indent: -9999px;
    width: 20px;
}
a.facebook_button, a.googleplus_button, a.twitter_button, a.pinterest_button {
    opacity: 0;
    transition: all 0.2s ease-in 0s;
}
a.facebook_button:hover, a.googleplus_button:hover, a.twitter_button:hover, a.pinterest_button:hover {
    opacity: 1;
}
.facebook_button {
    background: url(images/buttons_off.png) no-repeat scroll 0 0 #CFCFCD;
}
.facebook_button:hover {
    background: url(images/buttons_on.png) no-repeat scroll 0 0 #CFCFCD;
}
.googleplus_button {
    background: url(images/buttons_off.png) no-repeat scroll -20px 0 #CFCFCD;
}
.googleplus_button:hover {
    background: url(images/buttons_on.png) no-repeat scroll -20px 0 #CFCFCD;
}
.twitter_button {
    background: url(images/buttons_off.png) no-repeat scroll -40px 0 #CFCFCD;
}
.twitter_button:hover {
    background: url(images/buttons_on.png) no-repeat scroll -40px 0 #CFCFCD;
}
.pinterest_button {
    background: url(images/buttons_off.png) no-repeat scroll -60px 0 #CFCFCD;
}
.pinterest_button:hover {
    background: url(images/buttons_on.png) no-repeat scroll -60px 0 #CFCFCD;
}

.postmetacustom {
	float: left;
	display: block;
	padding-top: 5px;
}

.commentsright {
	float: right;
	display: block;
	padding-top: 5px;
}

#related-post-thumbnail-images {
	display: block;
	overflow: hidden;
	float: left;
}

.content-sidebar-sidebar .sidebar,
.sidebar-content-sidebar .sidebar,
.sidebar-sidebar-content .sidebar {
	width: 37.931034482%; /* 352px / 928px */
}

.content-sidebar-sidebar #content,
.sidebar-content-sidebar #content,
.sidebar-sidebar-content #content {
	width: 56.896551724%; /* 528px / 928px */
}

.content-sidebar #content,
.sidebar-content #content {
	width: 61%; /* 752px / 1182px */
}

.content-sidebar-sidebar #content-sidebar-wrap,
.sidebar-content-sidebar #content-sidebar-wrap,
.sidebar-sidebar-content #content-sidebar-wrap {
	width: 80.555555555%; /* 928px / 1182px */
}

.content-sidebar #content-sidebar-wrap,
.full-width-content #content,
.full-width-content #content-sidebar-wrap,
.sidebar-content #content-sidebar-wrap {
	width: 100%; /* 1182px / 1182px */
}

.footer-widgets-1,
.footer-widgets-2,
.sidebar-content #sidebar,
.sidebar-sidebar-content #sidebar,
#content,
#content-sidebar-wrap,
#footer .gototop,
#sidebar-alt,
#title-area {
	float: left;
}

.content-sidebar-sidebar #sidebar-alt,
.footer-widgets-3,
.sidebar,
.sidebar-content #content,
.sidebar-content-sidebar #content-sidebar-wrap,
.sidebar-sidebar-content #content,
.sidebar-sidebar-content #content-sidebar-wrap,
#footer .creds,
#header .widget-area {
	float: right;
}

/* 04c - Header ----------- */

#header {
	overflow: hidden;
/*	padding-bottom: 27px;
	padding-bottom: 1.7rem;*/
}

#header .wrap {
	min-height: 190px;
}

#title {
	line-height: 1;
	margin: 0;
}

.header-image #title {
	margin: 0;
}

#description {
	line-height: 0;
	font-size: 0;
	padding: 0;
	margin: 0;
}

/*.header-full-width #title,
.header-full-width #title a,
.header-full-width #title-area {
	width: 100%;
}*/

/*.header-image #title,
.header-image #title a,
.header-image #title-area {
	display: block;
	float: left;
	min-height: 120px;
	overflow: hidden;
	text-indent: -9999px;
	width: 50%;
}*/

/*.header-image #description {
	display: block;
	overflow: hidden;
}*/

#title a {
	font-size: 0;
	display: block;
	height: 100px;
	width: 508px;
}

#title-area {
	margin: 0 auto;
}

/* 04d - Main Content ----------- */

#content {
	padding: 32px 32px 40px;
	padding: 2rem 2rem 2.5rem;
}

.entry,
.page .post.entry {
	margin-bottom: 32px;
	margin-bottom: 2rem;
}

.single .entry {
	margin-bottom: 48px;
	margin-bottom: 3rem;
}

.page .entry {
	margin: 0;
}

.entry-content {
	padding-bottom: 16px;
	padding-bottom: 1rem;
	overflow: hidden;
}

.entry-content,
.entry-content p {
	line-height: 1.625;
}

.entry-content p {
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.entry-content img {
	display: block;
	margin: 20px auto;
}

blockquote {
	background-color: #ebe0ea;
	border: 1px dotted #333;
	margin-bottom: 20px;
	margin-bottom: 1.25rem;
	padding: 24px 32px;
	padding: 1.5rem 2rem;
}

blockquote p {
	color: #333;
}

/*blockquote::before {
	content: "“";
	display: block;
	height: 0;
	left: -20px;
	position: relative;
	top: -10px;
}*/

/* Home Page Widgets
------------------------------------------------------------ */

#featured-top {
	float: left;
	padding: 10px 0 0 0;
	width: 100%;
	}

#featured-full {
	float: left;
	padding: 0;
	width: 100%;
}

#featured-full h2 {
	background: none;
	margin-bottom: 0 !important;
	text-align: center;
	font-size: 22px;
}

#featured-full h2 a {
	color: #686501;
	text-transform: lowercase;
}

#featured-full h2 a:hover {
	color: #686581;
}

#featured-full img {
	display: block;
	margin: 20px auto;
}

.home h2 {
	font-size: 22px;
	font-size: 1.375rem;
}

#featured-top p, #featured-bottom-stuff p, #featured-full p {
	margin-bottom: 20px;
}

#featured-bottom-stuff {
	float: left;
	padding: 10px 0 0 0;
	width: 100%;
}

#featured-top .wrap, #featured-full .wrap, #featured-bottom-stuff .wrap {
	margin: 0;
	padding: 5px 0 0 0;
	}
	
#featured-top p, #featured-bottom p, #featured-bottom-stuff p {
	margin: 0;
	padding: 5px 25px 20px;
	}

/*#featured-top .gfwa-odd {
	background: #e9e5e3;
	padding: 25px;
	margin-top: 0;
	margin-bottom: 0;
}

#featured-top .gfwa-even {
	background: #F4F2F1;
	padding: 25px;
	margin-top: 0;
	margin-bottom: 0;
}*/

#featured-full .widget, #featured-top .widget, #featured-bottom-stuff .widget {
	margin: 0 0 15px 0;
	padding: 0;
	}

div.featured-full img {
	display: block;
	margin: 20px auto 10px;
}

.featuredpost img, .featuredpage img {
	display: block;
	margin: 0 auto;
}

.featured-top-left {
	float: left;
	width: 100%;
}

.featured-top-left h2 {
	margin-bottom: 4px;
	margin-bottom: .25rem;
}

.featured-top-left h2 a {
	min-width: 645px;
	text-transform: lowercase;
	color: #686501;
}

.featured-top-left h2 a:hover {
	color: #686581;
}

.featured-bottom-left {
	float: left;
	width: 48%;
	}
	
.featured-bottom-right {
	float: right;
	width: 48%;
	}


#featured-full h4 {
	color: #59c5ca;
	font-size: 30px;
	padding: 0 0 4px 0;
	text-align: center;
	text-transform: lowercase;
}



#featured-top h4 {
	color: #fb9b04;
	font-size: 30px;
	padding: 0 0 4px 0;
	text-align: center;
	text-transform: lowercase;
}


#featured-bottom-stuff h4 {
	color: #59c5ca;
	font-size: 30px;
	padding: 0 0 4px 0;
	text-align: center;
	text-transform: lowercase;
}

#footer-widgets {
	border-top: 2px dotted #AAAAAA;
	padding: 25px;
}

/* 04e - Post Info & Meta ----------- */

.post-info,
.post-meta {
	line-height: 1.5;
}

.post-info {
	text-align: center;
	margin-top: 10px;
	margin-top: 0.625rem;
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.post-meta {
	clear: both;
}

.post-date {
	-khtml-border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	background-color: #eb3355;
	border-radius: 3px;
	color: #fff;
	float: left;
	font-family: 'Open Sans', AppleGothic, Arial, sans-serif;
	font-size: 12px;
	line-height: 20px;
	margin: 0 10px 0 0;
	padding: 10px 5px;
	text-align: center;
	width: 50px;
}

.post-comments {
/*	background: url(images/post-comments.png) no-repeat center left;
	margin-left: 16px;
	margin-left: 1rem;
	padding-left: 20px;
	padding-left: 1.25rem;*/
}

/*.post-meta {
	border-top: 1px solid #ccc;
	padding-top: 24px;
	padding-top: 1.5rem;
}*/

/*.categories,
.tags {
	display: block;
}*/

/* 04f - Column Classes ----------- */

.five-sixths,
.four-fifths,
.four-sixths,
.one-fifth,
.one-fourth,
.one-half,
.one-sixth,
.one-third,
.three-fifths,
.three-fourths,
.three-sixths,
.two-fifths,
.two-fourths,
.two-sixths,
.two-thirds {
	float: left;
	margin-left: 4.166666666%; /* 48px / 1182px */
}

.one-half,
.three-sixths,
.two-fourths {
	width: 47.9166666666%; /* 552px / 1182px */
}

.one-third,
.two-sixths {
	width: 30.555555555%; /* 352px / 1182px */
}

.four-sixths,
.two-thirds {
	width: 65.277777777%; /* 752px / 1182px */
}

.one-fourth {
	width: 21.875%; /* 252px / 1182px */
}

.three-fourths {
	width: 73.958333333%; /* 852px / 1182px */
}

.one-fifth {
	width: 16.666666666%; /* 192px / 1182px */
}

.two-fifths {
	width: 37.5%; /* 432px / 1182px */
}

.three-fifths {
	width: 58.333333333%; /* 672px / 1182px */
}

.four-fifths {
	width: 79.166666666%; /* 912px / 1182px */
}

.one-sixth {
	width: 13.194444444%; /* 152px / 1182px */
}

.five-sixths {
	width: 82.638888888%; /* 952px / 1182px */
}

.first {
	margin-left: 0;
}

/* 04g - Miscellaneous ----------- */

p.subscribe-to-comments {
	padding: 24px 0 16px;
	padding: 1.5rem 0 1rem;
}

p.pages,
.clear,
.clear-line,
.first {
	clear: both;
}

.clear-line {
	border-bottom: 1px solid #ccc;
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.alignleft,
.archive-page {
	float: left;
}

.alignright {
	float: right;
}

.archive-page {
	width: 50%;
}

.author-box,
.sticky {
	margin-bottom: 80px;
	margin-bottom: 5rem;
}

.author-box,
.author-box h1,
.taxonomy-description {
	line-height: 1.5;
}

.author-box,
.breadcrumb,
.sticky,
.taxonomy-description {
	background-color: #f5f5f5;
	margin-bottom: 48px;
	margin-bottom: 3rem;
	overflow: hidden;
	padding: 32px;
	padding: 2rem;
}


/*
05 Menus
---------------------------------------------------------------------------------------------------- */

.genesis-nav-menu {
	background-color: #f2f2f2;
	font-family: 'Open Sans', Helvetica Neue, Helvetica, arial, sans-serif;
	text-transform: lowercase;
	clear: both;
	overflow: hidden;
}

#header .genesis-nav-menu {
	float: right;
	margin-top: 48px;
	margin-top: 3rem;
	width: auto;
}

/*.genesis-nav-menu.menu-primary,
.genesis-nav-menu.menu-secondary {
	border-bottom: 1px solid #ccc;
}*/

.genesis-nav-menu ul {
	float: left;
	width: 100%;
}

.genesis-nav-menu li {
	display: inline-block;
	float: left;
	list-style-type: none;
	text-align: left;
}

.genesis-nav-menu a {
	display: block;
	color: #444;
	padding: 8px 20px;
	padding: .5rem 1.25rem;
	position: relative;
}

.genesis-nav-menu li.highlight-menu-item {
	margin-left: 20px;
	margin-left: 1.25rem;
}

.genesis-nav-menu .highlight-menu-item a {
	background-color: #555555;
}

.genesis-nav-menu .highlight-menu-item a:hover {
	background-color: #fcfcfc;
}

.genesis-nav-menu li li a,
.genesis-nav-menu li li a:link,
.genesis-nav-menu li li a:visited {
	background-color: #fff;
	border: 1px solid #ccc;
	border-top: none;
	padding: 8px 16px;
	padding: .5rem 1rem;
	position: relative;
	width: 170px;
}

.genesis-nav-menu li li a:hover {
	background-color: #F4F2F1;
}

.genesis-nav-menu li ul {
	left: -9999px;
	position: absolute;
	width: 212px;
	z-index: 99;
}

.genesis-nav-menu li ul ul {
	margin: -55px 0 0 211px;
}

.genesis-nav-menu li:hover ul ul,
.genesis-nav-menu li.sfHover ul ul {
	left: -9999px;
}

.genesis-nav-menu li:hover,
.genesis-nav-menu li.sfHover {
	position: static;
}

ul.genesis-nav-menu li:hover>ul,
ul.genesis-nav-menu li.sfHover ul,
#header .genesis-nav-menu li:hover>ul,
#header .genesis-nav-menu li.sfHover ul {
	left: auto;
}

.genesis-nav-menu li a .sf-sub-indicator,
.genesis-nav-menu li li a .sf-sub-indicator,
.genesis-nav-menu li li li a .sf-sub-indicator {
	position: absolute;
	text-indent: -9999px;
}

#wpadminbar li:hover ul ul {
	left: 0;
}

/* 05a - Primary Navigation Extras ----------- */

.genesis-nav-menu li.right {
	float: right;
	padding: 24px 20px;
	padding: 1.5rem 1.25rem;
}

.genesis-nav-menu li.right a {
	display: inline;
	padding: 0;
}

.genesis-nav-menu li.search {
	padding: 6px 0 0;
	padding: 0.375rem 0 0;
}

.genesis-nav-menu li.rss a {
	background: url(images/rss.png) no-repeat center left;
	margin-left: 20px;
	margin-left: 1.25rem;
	padding-left: 20px;
	padding-left: 1.25rem;
}

.genesis-nav-menu li.twitter a {
	background: url(images/twitter-nav.png) no-repeat center left;
	padding-left: 24px;
	padding-left: 1.5rem;
}

/*
Sticky Menu
---------------------------------------------------------------------------------------------------- */
 
#subnav {
background-color: #66BED8;
border-bottom: 4px solid #77CD73;
font-family: 'Open Sans', Helvetica Neue, Helvetica, sans-serif;
display: none;
position: fixed;
top: 0;
width: 100%;
z-index: 999;
}
 
#subnav .wrap {
margin: 0 auto;
position: relative;
width: 1182px;
}
 
#subnav .genesis-nav-menu.menu-secondary {
border: none;
}
 
.genesis-nav-menu.menu-secondary a {
color: #fff;
padding: 13px;
padding: .8rem;
}
 
/*.genesis-nav-menu.menu-secondary li.sticky-right {
float: right;
}*/
 
.genesis-nav-menu.menu-secondary li li a,
.genesis-nav-menu.menu-secondary li li a:link,
.genesis-nav-menu.menu-secondary li li a:visited {
background-color: #333333;
border: 1px solid #fff;
border-top: none;
color: #fff;
padding: 20px;
padding: 1.25rem;
}
 
.genesis-nav-menu.menu-secondary li li a:hover {
color: #686501;
}


/*
06 Headings
---------------------------------------------------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
.entry-title a {
	line-height: 1.2;
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.entry-title {
	margin-bottom: 0;
	text-align: center;
	text-transform: lowercase;
/*	background: url(images/sprite.png) -8px -1522px no-repeat;
	padding-left: 58px;*/
/*	min-height: 50px;*/
}

/*.category-gluten-free-recipes .entry-title {
	background: url(images/sprite.png) -8px -1122px no-repeat;
}

.category-how-to-homeschool .entry-title,
.category-ideas-for-family-fun .entry-title {
	background: url(images/sprite.png) -8px -1322px no-repeat;
}

.category-traveling .entry-title {
	background: url(images/sprite.png) -8px -1222px no-repeat;
}

.category-organizing .entry-title {
	background: url(images/sprite.png) -8px -1622px no-repeat;
}*/

/** CATEGORY ICONS BESIDE POST TITLE */

.posticon {
	background: url(images/sprite.png) -8px -1522px no-repeat;
	min-height: 50px;
	width: 58px;
	float: left;
}

.category-gluten-free-recipes .posticon {
	background: url(images/sprite.png) -8px -1122px no-repeat;
}

.category-how-to-homeschool .posticon,
.category-ideas-for-family-fun .entry-title {
	background: url(images/sprite.png) -8px -1322px no-repeat;
}

.category-traveling .posticon {
	background: url(images/sprite.png) -8px -1222px no-repeat;
}

.category-organizing .posticon {
	background: url(images/sprite.png) -8px -1622px no-repeat;
}

.category-crafts .posticon {
	background: url(images/sprite.png) -8px -2064px no-repeat;
}

.category-favorite-things .posticon {
	background: url(images/sprite.png) -8px -2264px no-repeat;
}

.category-iphone-apps .posticon {
	background: url(images/sprite.png) -8px -2164px no-repeat;
}

.category-frugal-living .posticon {
	background: url(images/sprite.png) -8px -2364px no-repeat;
}

.author-box h1 {
	margin: 0
}

.taxonomy-description h1 {
	margin-bottom: 4px;
	margin-bottom: 0.25rem;
}

.archive-title {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}


/*
07 Lists
---------------------------------------------------------------------------------------------------- */

.entry-content ol,
.entry-content ul {
	margin-bottom: 26px;
	margin-bottom: 1.625rem;
}

.entry-content ol li,
.entry-content ul li {
	line-height: 1.625;
}

.entry-content ol li,
.entry-content ul li {
	margin-left: 40px;
	margin-left: 2.5rem;
}

.entry-content ol li {
	list-style-type: decimal;
}

.entry-content ul li {
	list-style-type: disc;
}

.entry-content ol ol,
.entry-content ul ul {
	margin-bottom: 0;
}


/*
08 Post Navigation
---------------------------------------------------------------------------------------------------- */

.navigation li {
	display: inline;
}

.navigation li a,
.navigation li a:hover,
.navigation li.active a,
.navigation li.disabled {
	background-color: #77CD73;
	border-radius: 3px;
	cursor: pointer;
	padding: 12px;
	padding: 0.75rem;
}

.navigation li a:hover,
.navigation li.active a {
	background-color: #686501;
}

#single-post-navigation {
	display: block;
	clear: both;
	overflow: hidden;
	margin: 20px 0;
	float: left;
}


/*
09 Comments
---------------------------------------------------------------------------------------------------- */

#comments,
#respond {
	line-height: 1.5;
	clear: both;
	overflow: hidden;
}

.ping-list,
#comments {
	margin-bottom: 48px;
	margin-bottom: 3rem;
}

#author,
#email,
#url {
	width: 50%;
}

.commentmetadata,
#author,
#email,
#url {
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

#comment {
	margin: 12px 0;
	margin: 0.75rem 0;
}

label {
	margin-left: 12px;
	margin-left: 0.75rem;
}

.comment-list li,
.ping-list li {
	list-style-type: none;
	margin-top: 24px;
	margin-top: 1.5rem;
	padding: 32px;
	padding: 2rem;
}

.comment-list li ul li {
	background-color: #F4F2F1;
	margin-right: -32px;
	margin-right: -2rem;
}

.comment-header {
	overflow: hidden;
}

.comment {
	background-color: #E9E5E3;
	border: 2px solid #fff;
	border-right: none;
}

.comment-content p {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.bypostauthor {
}

#comments .navigation {
	margin-top: 32px;
	margin-top: 2rem;
}


/*
10 Sidebars
---------------------------------------------------------------------------------------------------- */

.sidebar {
	display: inline;
	line-height: 1.5;
}

.sidebar p {
	font-size: 14px;
	font-size: 0.875rem;
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.sidebar .widget {
/*	margin-bottom: 32px;
	margin-bottom: 2rem;*/
	padding: 14px;
	padding: 0.875rem;
	overflow: hidden;
}

.sidebar.widget-area ul li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
	word-wrap: break-word;
}

.sidebar.widget-area h4 {
/*	background: url(images/flags.png) no-repeat right bottom;
	padding-bottom: 20px;
	padding-bottom: 1.25rem;*/
}

/*
11 Footer
---------------------------------------------------------------------------------------------------- */

#footer {
	background-color: #F4F2F1;
	clear: both;
}

#footer .wrap {
/*	border-top: 2px dotted #AAAAAA;
	background-color: #F4F2F1;*/
	overflow: hidden;
	padding: 12px 24px;
	padding: 0.75rem 1.5rem;
}

#footer .creds {
	text-align: right;
}

#footer .creds,
#footer .gototop {
	margin: 8px 0;
	margin: 0.5rem 0;
}

#jeni-bottom-menu {
	background-color: #F4F2F1;
	margin: -16px 0;
	margin: -2rem 0;
	padding: 4px 24px 12px;
	padding: 0.25rem 1.5rem 0.75rem;
}
#jeni-bottom-menu a {
	width: 26px;
	height: 26px;
	margin: 0 2px;
	display: inline-block;
}

#jeni-bottom-menu p {
	font-size: 14px;
	font-size: 0.875rem;
}

#footer p, #footer a, #jeni-bottom-menu p, #jeni-bottom-menu a {
/*	color: #ffffff;*/
	text-decoration: none;
}

#footer a:hover, #jeni-bottom-menu a:hover {
	text-decoration: underline;
}


/* 11a - Footer Widgets ----------- */

/*.footer-widgets {
	border-top: 2px solid #333333;
	clear: both;
	line-height: 1.5;
	overflow: hidden;
	padding: 32px 0 16px;
	padding: 2rem 0 1rem;
}

.footer-widgets p {
	margin-bottom: 16px;
	margin-bottom: 1rem;
}

.footer-widgets .widget {
	margin-bottom: 24px;
	margin-bottom: 1.5rem;
}

.footer-widgets .widget-area ul li {
	list-style-type: none;
	margin-bottom: 6px;
	margin-bottom: 0.375rem;
	word-wrap: break-word;
}

.footer-widgets-1 {
	margin-right: 4.166666666%; /* 48px / 1182px *!/
}*/

/*
Footer Widgets
---------------------------------------------------------------------- */
 
#footer-widgets {
clear: both;
margin: 0 auto 10px;
overflow: hidden;
width: 1100px;
}
 
#footer-widgets .widget {
background: none;
border: none;
margin: 0 0 15px;
padding: 0;
}
 
#footer-widgets p {
padding: 0 0 10px;
font-size: 14px;
}

#footer-widgets a {
	text-decoration: none;
}

#footer-widgets ul {
margin: 0;
}
 
#footer-widgets ul li {
margin: 0 0 10px 20px;
}
 
.footer-widgets-1 {
float: left;
margin: 0 20px 0 0;
width: 30%;
}
 
.footer-widgets-2 {
float: left;
width: 30%;
}
 
.footer-widgets-3 {
float: right;
width: 32%;
}


/*
12 Forms & Buttons
---------------------------------------------------------------------------------------------------- */

input,
select,
textarea {
	background-color: #fff;
	border: 1px solid #ddd;
	border-radius: 3px;
	box-shadow: 0 0 5px #ddd inset;
	padding: 8px;
	padding: 0.5rem;
	width: 100%;
}

#header .search-form {
	float: right;
	margin-top: 56px;
	margin-top: 3.5rem;
	width: 100%;
}

button,
input[type="button"],
input[type="submit"],
.btn {
	background-color: #686501;
	border: none;
	box-shadow: none;
	cursor: pointer;
	padding: 8px 16px;
	padding: .5rem 1rem;
	width: auto;
}

button:hover,
input:hover[type="button"],
input:hover[type="submit"],
.btn:hover {
	background-color: #686581;
	color: #FFFFFF;
}

.enews input[type="submit"],
.search-form input[type="submit"] {
	border: 0;
	clip: rect(0, 0, 0, 0);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

/* 12a - Gravity Forms ----------- */

#content div.gform_wrapper input,
#content div.gform_wrapper select,
#content div.gform_wrapper textarea,
#content div.gform_wrapper .ginput_complex label {
	font-size: 16px;
	font-size: 1rem;
	padding: 16px;
	padding: 1rem;
}

#content div.gform_wrapper input[type="submit"] {
	padding: 16px 24px;
	padding: 1rem 1.5rem;
}

#content div.gform_wrapper .ginput_complex label {
	padding: 0;
}

div.gform_wrapper li,
div.gform_wrapper form li {
	margin: 16px 0 0;
	margin: 1rem 0 0;
}


/*
13 Images & Captions
---------------------------------------------------------------------------------------------------- */

embed,
img,
object,
video {
	max-width: 100%;
}

img {
	height: auto;
}

.alignleft .avatar {
	margin-right: 24px;
	margin-right: 1.5rem;
}

.alignright .avatar {
	margin-left: 24px;
	margin-left: 1.5rem;
}

.author-box .avatar {
	float: left;
	margin-right: 24px;
	margin-right: 1.5rem
}

.comment-list li .avatar {
	float: left;
	margin: 0 16px 24px 0;
	margin: 0 1rem 1.5rem 0;
}

img.centered,
.aligncenter {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.5rem
}

img.alignnone {
	display: inline;
	margin-bottom: 12px;
	margin-bottom: 0.75rem;
}

img.alignleft,
.post-image,
.wp-caption.alignleft {
	display: inline;
	margin: 0 24px 24px 0;
	margin: 0 1.5rem 1.5rem 0;
}

img.alignright,
.wp-caption.alignright {
	display: inline;
	margin: 0 0 24px 24px;
	margin: 0 0 1.5rem 1.5rem;
}

p.wp-caption-text {
	line-height: 1.2;
	margin-top: 12px;
	margin-top: 0.75rem;
}

.gallery-caption {
}

.categoryThumbnailList .categoryThumbnailList_item {
	height: 260px !important;
	line-height: 1;
	margin: 0 20px 10px 10px !important;
}

.categoryThumbnailList a, .categoryThumbnailList_item a {
	text-decoration: none;
}

.categoryThumbnailList a:hover, .categoryThumbnaillist_item a:hover {
	text-decoration: underline;
	color: #686501;
}

.categoryThumbnailList_item img {
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	margin-bottom: -10px;
}

.categoryThumbnailList a img:hover {
	opacity: 0.8;
}

#nav .genesis-nav-menu li,
#nav ul.genesis-nav-menu {
        float: none;
}

#nav .genesis-nav-menu {
        text-align: center;
}

/* Center Secondary Nav Bar  */

#subnav .genesis-nav-menu li,
#subnav ul.genesis-nav-menu {
        float: none;
}

#subnav .genesis-nav-menu {
        text-align: center;
}

#zlrecipe-container {
	background: url(images/ziplist-bg.jpg) repeat;
	border: 3px double #686501;
}

#zlrecipe-container .border-bottom, #zlrecipe-container .b-b {
	border-bottom: 1px solid #686501 !important;
}


/*
14 Media Queries
---------------------------------------------------------------------------------------------------- */

/* Desktops, laptops and iPads (landscape) ----------- */

/*@media only screen and (max-width: 1024px) {

	#wrap {
		max-width: 100%;
	}	

}

/* iPads (portrait) ----------- *!/

@media only screen and (max-width: 768px) {

	/*#wrap {
		padding: 0 5%;
	}*!/

	.footer-widgets-1,
	.footer-widgets-2,
	.footer-widgets-3,
	.wrap,
	#footer .creds,
	#footer .gototop,
	#header .widget-area,
	#inner,
	#title-area,
	#wrap .sidebar,
	#wrap #content,
	#wrap #content-sidebar-wrap,
	#wrap #sidebar-alt {
		width: 100%;
	}

	.genesis-nav-menu li,
	#footer .creds,
	#footer .gototop,
	#header ul.genesis-nav-menu,
	#header .search-form {
		float: none;
	}

	.genesis-nav-menu,
	#description,
	#footer .creds,
	#footer .gototop,
	#header .search-form,
	#title,
	#title-area {
		text-align: center;
	}

	.genesis-nav-menu a {
		padding: 20px 16px;
		padding: 1.25rem 1rem;
	}

	#title {
		margin: 16px 0;
		margin: 1rem 0;
	}
	
	#title-area {
		margin-top: 20px;
	}
	
	#title a {
		margin-left: 50px;
		background: url(images/sprite.png) 0 -1732px no-repeat;
	}

	#header .search-form {
		margin: 32px auto 0;
		margin: 2rem auto 0;
		width: 50%;
	}
	
	#header {
		min-height: 190px;
	}
	
	#header .wrap {
		min-height: 190px;
	}
	
	#cuteheadericons {
		left: 20px;
		top: 145px;
	}
	
	.genesis-nav-menu li.right {
		display: none;
	}

	#footer .wrap {
/*		padding: 24px 0;
		padding: 1.5rem 0;*!/
	}

	.footer-widgets-1,
	#header .genesis-nav-menu {
		margin: 0;
	}

	#wrap #content {
		width: 90%;
	}

}

/* iPhones (portrait and landscape) ----------- *!/

@media only screen and (max-width: 480px) {

	html {
		font-size: 87.5%; /* 14px base *!/
	}

	#header .search-form {
		width: 100%;
	}
	
	#header {
		min-height: 330px;
	}
	
	#title a {
		background: url(images/sprite.png) 0 -1832px no-repeat;
		height: 50px;
		margin-left: 25px;
	}
	
	#title-area {
		margin-top: 10px;
	}
	
	#header .wrap {
		min-height: 100px;
	}
	
	#cuteheadericons {
		top: 125px;
	}

	.archive-page,
	.five-sixths,
	.four-fifths,
	.four-sixths,
	.one-fifth,
	.one-fourth,
	.one-half,
	.one-sixth,
	.one-third,
	.three-fifths,
	.three-fourths,
	.three-sixths,
	.two-fifths,
	.two-fourths,
	.two-sixths,
	.two-thirds {
		margin: 0;
		width: 100%;
	}

}*/

<!-- +SWOOP -->
<script type="text/javascript"
  src="http://ardrone.swoop.com/js/spxw.js"
  data-domain="SW-66866536-45233"
  data-serverbase="http://ardrone.swoop.com/">
</script>
<!-- -SWOOP -->