/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}


a:active,
a:hover {
	outline: 0;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #444444;
	font-family: 'Open Sans', Arial;
	font-size: 16px;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/



input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/

a {color: #444444;}

a:visited {
	color: #444444;
}

a:hover,
a:focus,
a:active {
	color: #444444;
}

a:focus {
	outline: none;
}

a:hover,
a:active {
	outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: none;
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 42px;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 150px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a { 
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}
.main-navigation li {float:none;border-bottom: solid #ccc 1px;}

#primary-menu li a {padding:10px 5%;}
li.menu-item-has-children>a:after {display: block;content: "\f107";font-family: "FontAwesome";float: right;color: #da0000;font-size: 17px;margin-top: -2px;margin-left: 6px;}

@media screen and (max-width: 779px) {
.main-navigation.toggled ul ul {display: none;}
    	 .main-navigation ul ul {
        display:none;
        width:100%;background:#111111;
        float:none;
        position: relative;
        top:inherit;
        box-shadow:none;
        height:auto;
        margin:0;
	visibility:visible;opacity:1;left:auto;
	 }
	 .main-navigation ul ul a {
	        width:100%;
	 }
}

@media screen and (min-width: 780px) {
	.main-navigation li {    display: inline-block;border-bottom:0px;}
	#primary-menu li a {padding:10px;}
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
	#primary {float: left;width: 70%;}
	#primary.nosidebar {float:none;width:100%;}
	#secondary {float: right;width: 26%!important;}
	.main-navigation ul ul {width: 200px;background: #eee;}
	.main-navigation ul ul a {width:auto;}
	.main-navigation ul ul a:hover {background: #ccc;}
	.main-navigation li:nth-child(1) {padding-left: 5%;}
	.main-navigation li:nth-child(1) a {padding-left: 0;}
	.main-navigation ul ul li:nth-child(1) {padding-left: 0;}
	.main-navigation ul ul li:nth-child(1) a {padding-left: 10px;}
	.main-navigation li ul li {display:block;}
}
@media screen and (min-width: 780px) {
	.main-navigation li:nth-child(1) {padding-left: 0;}
}


.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden; 
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Displays
--------------------------------------------------------------*/
.display-block {
	display: block;
}
.display-inline-block {
	display: inline-block;
}
.display-inline {
	display: inline;
}
.display-flex {
	display: flex;
}


/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;margin-left:1.5%;margin-right:1.5%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;margin-left:0px;margin-right:0px;
}

.gallery-columns-3 .gallery-item {
	max-width: 47%;
}
@media all and (min-width:580px) {
	.gallery-columns-3 .gallery-item {
		max-width: 30.33%;
	}
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Additional
--------------------------------------------------------------*/
div.easyrecipe {font-size:15px!important;}
a.homepage_latestposts_subitem:hover .inside span, a.homepage_latestposts_item:hover .inside span, #primary-menu ul, a, .previewarticlelink_title, .boardmember_title, #homepage_latestposts .owl-theme .owl-controls .owl-nav .owl-prev, #homepage_latestposts .owl-theme .owl-controls .owl-nav .owl-next {-webkit-transition:All .3s ease;-moz-transition:All .3s ease;-o-transition:All .3s ease;-ms-transition:All .3s ease;transition:All .3s ease;}
.wrap {width:92%;margin:auto;max-width:1100px;}
.site-content {padding:20px 0px;}
h1, #respond h3 {font-size:26px;text-transform:uppercase;color:#d84e7a;text-align:center;}
h1:before, #respond h3:before {display:block;margin:auto;content:' ';margin-bottom:7px;background:url(images/divider-top.png) 50% 50% no-repeat;width:100px;height:20px;}
h1:after, #respond h3:after {display:block;margin:auto;content:' ';margin-top:7px;background:url(images/divider-bottom.png) 50% 50% no-repeat;width:100px;height:20px;}
#secondary h2 {font-size:18px;text-transform:uppercase;color:#d84e7a;background:url(images/divider-green.png) 0 8px repeat-x;}
#secondary h2 span {display:inline-block;background:#fff;padding:0px 10px 0 0;}
#secondary ul {list-style-type:none;margin: 0px;padding: 0px;}
#secondary ul li {padding:0px;}
.widget.popular-posts img {width:20%;margin-bottom:10px;margin-right:15px;}
#topstrip {background:#e0e0e0;padding: 6px 0px;text-align:center;}
#topstrip_left {font-weight:700;font-size:14px;}
#topstrip_left img {margin-bottom: -4px;}
#topstrip_right {font-size:12px;font-weight:700;text-transform:uppercase;margin-top:10px;}
#topstrip_right a {text-decoration:none;padding:0px 5px;}
#masthead {position:relative;background:url(images/headershadow1.png) bottom left repeat-x;padding-bottom:15px;}
#headerbuttons {text-align:center;}
#headerbuttons a {box-sizing:border-box;padding: 11px 0px 0 0;text-transform:uppercase;font-size: 10px;font-weight:700;line-height: 12px;width: 80px;height: 80px;display:inline-block;vertical-align:bottom;border-radius:100%;-moz-border-radius:100%;-webkit-border-radius:100%;border:solid #5ba5d5 1px;text-align:center;text-decoration:none;}
#headerbuttons a img {width:26px;display:block;margin:0 auto 7px auto;}
.posts-list {clear:both;}
.posts-list .posts-list-image {clear:both;float:left;width:30%;margin-right:3%;}
.posts-list .posts-list-image img {width:100%;vertical-align:bottom;}
.posts-list .posts-list-image a  {border:solid #ddd 5px;display:block;}
.posts-list .posts-list-text {float:right;width:67%;margin: 0px;}
.posts-list .posts-list-text h3 {margin-top:0px;}
.posts-list .posts-list-text h3 a {text-transform:uppercase;text-decoration:none;}
.posts-list .hr {clear:both;margin-bottom:20px;content:' ';display:block;height:20px;width:100%;background:url(images/divider-green.png) 0 100% repeat-x;padding-bottom:20px;}
.posts-list .posts-list-text .readmore a {text-transform:uppercase;font-size:12px;font-weight: 700;text-decoration: none;}
.subreadmore {text-transform:uppercase;font-size:12px;font-weight: 700;text-decoration: none;}
.posts-list .posts-list-text .readmore a:after {content:'...';}
.nav-previous a, .nav-next a, a.viewmoreblog {display:inline-block;background:#2d8dca;color:#fff;text-decoration:none;padding:10px 20px;border-radius:30px;text-transform:uppercase;font-weight:700;font-size:12px;}
a.viewmoreblog:before {display:inline-block;margin-right:10px;font-size:14px;font-family:"FontAwesome";color:#ffffff;text-align:center;text-decoration:none;content:'\f104'}
a.homefootercategory {
    display: inline-block;
    vertical-align: bottom;
    color: #d84e7a;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border: solid #d84e7a 1px;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px;
    margin-right:10px;
}
a.homefootercategory:hover {background:#d84e7a;color:#fff;}
#nevermissinside .inputfield {border-radius:20px;padding: 7px 20px;width:100%;max-width:300px;margin-top: 10px;display: inline-block;}
#nevermissinside .inputbutton {font-size: 18px!important;font-family:"FontAwesome";line-height: 18px;color:#ffffff;text-decoration:none;border-radius: 100%!important;width: 36px;height: 36px;margin-top: 10px;overflow: hidden;background: #2d8dca;display: inline-block;padding: 0px;text-align: center;}
#navigationarea {border-top:solid #ccc 1px;position:relative;}

#featurebuttons {background:url(images/headershadow2.png) 50% 0 no-repeat #cbdbe9;padding: 14px 0 10px 0px;text-align:center;}
#featurebuttons a img {width:80px;margin:0px 5px;}
#featurebuttons_right a {display:inline-block;width:36px;padding-top:6px;vertical-align:bottom;height:36px;font-family:"FontAwesome";color: #d84e7a;border-radius:100%;-moz-border-radius:100%;-webkit-border-radius:100%;border: solid #d84e7a 1px;text-align:center;text-decoration:none;}
#featurebuttons_right a:hover {background: #d84e7a;color:#ffffff;}
#primary-menu ul, a, .button {-webkit-transition:All .3s ease;-moz-transition:All .3s ease;-o-transition:All .3s ease;-ms-transition:All .3s ease;transition:All .3s ease;}
.site-branding{width: 90%;margin: auto;padding-top: 5px;}
button.menu-toggle{text-align:center;background:transparent;border:0;font-family:'FontAwesome';color: #444444;font-size: 20px!important;box-shadow:none;padding-right:0;text-shadow: none;height: auto;width: 100%;padding: 10px 0px;}
button.menu-toggle:before {content:'Menu';font-family:'Open Sans', arial;font-size:14px;text-transform:uppercase;font-weight:700;margin:0px 15px 0 0px;top:-2px;position:relative;}
header#masthead{position:relative}
.site-title{margin:10px 0}
button.menu-toggle:focus{outline:none;border:0}
#primary-menu {
    background: #eee;
    margin-bottom: 15px;
}
.cat-links, .tags-links {display:block;}
.cat-links a, .tags-links a {background:#eee;padding:5px 10px;margin:5px;display:inline-block;border-radius:5px;font-size:12px;}
ol.comment-list {padding:0px;margin:0px;list-style-type:none;}
ol.comment-list li {border: solid #d84e7a 1px;border-radius: 10px;padding:20px;margin-bottom:20px;background: #fbf7f8;}
#primary-menu li a {font-size: 14px;text-transform: uppercase;font-weight: 700;}
a.minibutton {display: inline-block;font-size: 10px;text-transform: uppercase;text-decoration: none;border-radius: 3px;color: #027377;background: #d7d7d7;padding: 7px 15px;}
a.minibutton:hover {background:#027377;color:#fff;}
button, input[type="button"], input[type="reset"], input[type="submit"] {background: #2d8dca;border: 0px!important;color:#fff;font-weight: 400;padding: 8px 25px;font-size: 12px;border-radius: 20px!important;-moz-border-radius: 4px!important;text-decoration:none;box-shadow: none;display:inline-block;text-shadow: none;text-transform: uppercase;font-weight: 700;}
a.button:hover, .button:hover {background:#0560a6;}

#nevermiss {background:#eaeaea;padding-top:5px;text-align:center;}
#nevermissinside {border-top:solid #da0000 1px;padding: 30px 0px 40px;}
#nevermiss .line1 {text-transform:uppercase;font-size:14px;font-weight:700;}
.widget_search {position:relative;}
.widget_search label {display:none;}
.widget_search #s {border-radius:20px;-moz-border-radius:20px;-webkit-border-radius:20px;width:100%;border-color:#555;padding:10px;font-size:14px;height:36px;}
.widget_search #searchsubmit {position:absolute;cursor:pointer;top:1px;right:0px;padding-left:10px;padding-right:20px;background:none;color:#d84e7a;font-family:'FontAwesome';}
#footer {background:#484848;color:#ccc;font-size:12px;padding:20px 0px;text-align:center;}
.navigation.post-navigation {display:none;}
.shareaholic-recommendations-container .shareaholic-recommendations .shareaholic-recommendation .recommendation-article-link .recommendation-article-title {text-align:center!important;font-size:12px!important;}
.wp_rp_wrap, .shareaholic-canvas {clear:both;margin-bottom:20px;}
.shareaholic-recommendations-header, .wp_rp_wrap h3.related_post_title {display:block;position:relative;top:-13px;text-transform:uppercase;background:#fff;width:210px;margin:auto!important;font-size: 16px!important;font-weight: 700;text-align: center;}
.wp_rp_content, .shareaholic-recommendations-container {width: 98%;border:solid #ccc 1px;padding-left: 2%;}
.wp_rp_wrap .wp_rp_content ul {width:94%;}
.wp_rp_wrap .wp_rp_content ul li {width:48%!important;;margin:0px 1% 20px!important;}
.wp_rp_wrap .wp_rp_content ul li img {width:100%!important;height:auto!important;}

.presstable td {padding:5px;border-bottom:solid #ccc 1px;}

.popup {display:none;position:fixed;top:0px;left:0px;width:100%;z-index:999; /*height:100%;*/}
.popupoverlay {position:absolute;top:0px;left:0px;width:100%;height:100%;z-index:1;background:rgba(0,0,0,0.8)}
.popupcontent {background:#fff;position:absolute;left:50%;width:300px;margin-left:-150px;z-index: 2;top: 50%;margin-top: -170px;}
.popupcontentinside {padding:20px;text-align:center;}
.popup .inputfield {border-radius:20px;padding: 7px 20px;width:200px;margin-top: 10px;display: inline-block;}
.popup .inputbutton {font-size: 18px!important;font-family:"FontAwesome";line-height: 18px;color:#ffffff;text-decoration:none;border-radius: 100%!important;width: 36px;height: 36px;margin-top: 10px;overflow: hidden;background: #2d8dca;display: inline-block;padding: 0px;text-align: center;}
.popup h3 {font-size:18px;text-transform:uppercase;color:#d84e7a;text-align:center;}
.popup h3:before {display:block;margin:auto;content:' ';margin-bottom:7px;background:url(images/divider-top.png) 50% 50% no-repeat;width:100px;height:20px;}
.popup h3:after {display:block;margin:auto;content:' ';margin-top:7px;background:url(images/divider-bottom.png) 50% 50% no-repeat;width:100px;height:20px;}
.popupcontentclose {content:'\f00d';font-family:'FontAwesome';position:absolute;top: 10px;right: 0px;text-align: center;cursor:pointer;display:block;color: #000;width: 40px;height: 40px;z-index: 23;}

/* Footer */
#footermenu {background:#333;text-align:center;}
#footermenu ul {list-style-type:none;padding:0px;margin:0px;}
#footermenu ul li {display:inline;}
#footermenu ul li a {color: #d84e7a;text-decoration:none;font-weight:700;text-transform:uppercase;padding:10px;display:inline-block;font-size:13px;}

/* Books */
.book h2 {padding-top:15px;font-size:14px!important;clear:none;}
.book {clear:both;width:90%;height: 300px;text-align:left;-moz-box-shadow:   0px 0px 3px 4px  rgba(0,0,0,0.2);-webkit-box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.2);box-shadow:         0px 0px 3px 4px  rgba(0,0,0,0.2);text-align:left;position:relative;padding:15px 2.5%;top: auto;margin:0px 2.5% 20px 2.5%;}
.book .detail {clear:both;}
.book .more {display:none;}
.book img {float:left;margin-right:20px;width:auto;height:150px;display: inline;}
.book .detail {font-size:13px;text-align:left;}
.book img.awardimg {position:absolute;top:-20px;right:-40px;width:80px;height:auto;}
.book .paymentlink {text-align:center;clear:both;}
.book .paymentlink .paymentbutton {clear:both;float:none;margin:10px 0 0 0px;}
.discountamount {display:none;}
#couponmessage {margin-bottom:40px;padding:10px;background:#eee;border:solid #ddd 1px;}


/* Books LARGE SCREEN 840+ */
@media all and (min-width:840px) {
	.book .detail {display:none;text-align:center;}
	.home .site-header {padding-bottom:0px;}
	.book .more {display:block;font-size:12px;text-transform:uppercase;}
	#bookcontainer {padding:20px 0;}
	.book {
		height: 310px;
		float:left;
		clear:none;
		width: 45%;
		margin: 0 5% 40px 0;
		padding: 15px 20px 15px 0;
		}
	.book.clear {clear:none!important;}
	.book .detail {padding:20px;z-index:999;top:90%;width: 100%;left:0;-moz-box-shadow:   0px 0px 3px 4px  rgba(0,0,0,0.2);-webkit-box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.2);box-shadow:         0px 0px 3px 4px  rgba(0,0,0,0.2);position:absolute;background:#eee;}
	.book h2 {padding-top:0px;font-size:14px;clear: none;}
}

/* =Single Page
Recipes
-------------------------------------------------------------- */

ul#recipepage, ul#recipepage li {
	padding: 0px;
	margin:0;
	list-style:none;
	text-align:center;
	line-height: 17px;
}
ul#recipepage li img {width:100%;height:auto;margin-bottom:8px;}
ul#recipepage li {
	box-sizing:border-box;
	float:left;
	width:100%;
	padding:3px;
	margin: 15px 0px 15px 0px;
	-moz-box-shadow: 0px 0px 3px 4px  rgba(0,0,0,0.1);
	-webkit-box-shadow: 0px 0px 3px 4px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 3px 4px  rgba(0,0,0,0.1);
}
ul#recipepage li a{
	color: #d84e7a;
	display:block;
	padding:0px 0px 8px 0;
	text-align:center;
	text-decoration:none;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
}
	


a.social-facebook:before {content:'\f09a';}
a.social-twitter:before {content:'\f099';}
a.social-pinterest:before {content:'\f0d2';}
a.social-google:before {content:'\f0d5';}
a.social-linkedin:before {content:'\f0e1';}
a.social-instagram:before {content:'\f16d';}

div.easyrecipe {border:solid #ccc 1px!important;border-radius:10px;padding:20px!important;}
.easyrecipe .ERSIngredients, .easyrecipe .ERSInstructions, .easyrecipe .ERSNotesDiv {border:solid #ccc 6px;border-radius:8px;padding:5px 15px 15px;}
.easyrecipe .ERSTopRight {margin-top: 3px;margin-right:15px;}

.owl-carousel .animated{-webkit-animation-duration:1000ms;animation-duration:1000ms;-webkit-animation-fill-mode:both;animation-fill-mode:both}
.owl-carousel .owl-animated-in{z-index:0}
.owl-carousel .owl-animated-out{z-index:1}
.owl-carousel .fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}
@-webkit-keyframes fadeOut {
0%{opacity:1}
100%{opacity:0}
}
@keyframes fadeOut {
0%{opacity:1}
100%{opacity:0}
}
.owl-height{-webkit-transition:height 500ms ease-in-out;-moz-transition:height 500ms ease-in-out;-ms-transition:height 500ms ease-in-out;-o-transition:height 500ms ease-in-out;transition:height 500ms ease-in-out}
.owl-carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}
.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}
.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}
.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0px,0px,0px)}
.owl-carousel .owl-controls .owl-nav .owl-prev,.owl-carousel .owl-controls .owl-nav .owl-next,.owl-carousel .owl-controls .owl-dot{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.owl-carousel.owl-loaded{display:block}
.owl-carousel.owl-loading{opacity:0;display:block}
.owl-carousel.owl-hidden{opacity:0}
.owl-carousel .owl-refresh .owl-item{display:none}
.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}
.owl-carousel.owl-text-select-on .owl-item{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}
.owl-carousel .owl-grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}
.owl-carousel.owl-rtl{direction:rtl}
.owl-carousel.owl-rtl .owl-item{float:right}
.no-js .owl-carousel{display:block}
.owl-carousel .owl-item .owl-lazy{opacity:0;-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;transition:opacity 400ms ease}
.owl-carousel .owl-item img{transform-style:preserve-3d}
.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}
.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;-webkit-transition:scale 100ms ease;-moz-transition:scale 100ms ease;-ms-transition:scale 100ms ease;-o-transition:scale 100ms ease;transition:scale 100ms ease}
.owl-carousel .owl-video-play-icon:hover{-webkit-transition:scale(1.3,1.3);-moz-transition:scale(1.3,1.3);-ms-transition:scale(1.3,1.3);-o-transition:scale(1.3,1.3);transition:scale(1.3,1.3)}
.owl-carousel .owl-video-playing .owl-video-tn,.owl-carousel .owl-video-playing .owl-video-play-icon{display:none}
.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;-webkit-background-size:contain;-moz-background-size:contain;-o-background-size:contain;background-size:contain;-webkit-transition:opacity 400ms ease;-moz-transition:opacity 400ms ease;-ms-transition:opacity 400ms ease;-o-transition:opacity 400ms ease;transition:opacity 400ms ease}
.owl-carousel .owl-video-frame{position:relative;z-index:1}
.owl-theme .owl-controls{margin-top:10px;text-align:center;-webkit-tap-highlight-color:transparent}.owl-theme .owl-controls .owl-nav [class*=owl-]{color:#fff;font-size:14px;margin:5px;padding:4px 7px;background:#d6d6d6;display:inline-block;cursor:pointer;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.owl-theme .owl-controls .owl-nav [class*=owl-]:hover{background:#869791;color:#fff;text-decoration:none}.owl-theme .owl-controls .owl-nav .disabled{opacity:.5;cursor:default}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;*display:inline}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px 7px;background:#d6d6d6;display:block;-webkit-backface-visibility:visible;-webkit-transition:opacity 200ms ease;-moz-transition:opacity 200ms ease;-ms-transition:opacity 200ms ease;-o-transition:opacity 200ms ease;transition:opacity 200ms ease;-webkit-border-radius:30px;-moz-border-radius:30px;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:#869791}
hr.lines {background: url(images/divider-green.png) 0 18px repeat-x;height: 30px;border:0px;display:block;clear:both;margin: 0px 0px 10px 0px;}
.singleauthorbox p {padding-top: 15px;}
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
	}
* html .clearfix             { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */

#pinterest-container > span {
    width: 100% !important;
    overflow: hidden;
}

/* Giveaway */
#step2box .wpcf7-text, #step3box .wpcf7-text, #step3box .wpcf7-textarea {border:solid #833d00 1px;padding:5px;margin-bottom:5px;}
#step1box {line-height:140%;text-align:left!important;background: url(/images/step1.jpg) 10px 20px no-repeat #f7efe2;padding: 12px 20px 20px 70px;border-radius: 10px;margin-bottom: 20px;}
#step2box {line-height:140%;text-align:left!important;background: url(/images/step2.jpg) 10px 20px no-repeat #f7efe2;padding: 12px 20px 20px 70px;border-radius: 10px;margin-bottom: 20px;}
#step3box {line-height:140%;text-align:left!important;background: url(/images/step3.jpg) 10px 20px no-repeat #f7efe2;padding: 12px 20px 20px 70px;border-radius: 10px;margin-bottom: 20px;}
#step1box p, #step2box p, #step3box p {text-align:left;}
#step3box .wpcf7-submit {cursor:pointer;background: #915a00;color:#fff;
background: -moz-linear-gradient(top,  #915a00 0%, #711700 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#915a00), color-stop(100%,#711700));
background: -webkit-linear-gradient(top,  #915a00 0%,#711700 100%);
background: -o-linear-gradient(top,  #915a00 0%,#711700 100%);
background: -ms-linear-gradient(top,  #915a00 0%,#711700 100%);
background: linear-gradient(to bottom,  #915a00 0%,#711700 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#915a00', endColorstr='#711700',GradientType=0 );
-webkit-border-radius: 4px;
-moz-border-radius: 4px;padding:10px;
border-radius: 4px;padding:15px;border:0px;
}
#step2box h4, #step1box h4, #step3box h4 {color:#833d00;}
#step3box textarea {height:50px;}
#post-793 h2, #post-4878 h2 {color:#78112C;}

.wpcf7-text, .wpcf7-textarea {   width: 100%; border: solid #555 1px;  padding: 8px;}

.wpcf7-submit {cursor:pointer;padding:10px;}
.shoptable td a {font-weight:400;}


.easyrecipe .ERSTopRight {
    float: right;
    width: 46%;
    text-align: center;
    z-index: 2;
    border: 1px solid #EDE0D7;
    padding: 5px 5px 5px;
    margin-left: 4%;
    background: #FFF;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 3px 2px #CCC;
    box-shadow: 0px 0px 5px 2px #CCC;
    max-width:none!important;
}

.easyrecipe .ERSTopRight img {
    border: 2px solid #999;
    width: 100%!important;
	max-width:100%!important;
}
#pinterest-container > span > span > span > span {
    min-width: 0;
}
.entry-footer .cat-links, .entry-footer .tags-links {display:none;}

@media all and (min-width:400px) {
	ul#recipepage li {width:46%;margin-left:2%;margin-right:2%;}
.singleauthorbox img {float:left;margin: 10px 20px 0 0;width: 140px;}
.singleauthorbox p {padding-top: 54px;}
}

@media (min-width: 600px) {
	#masthead {padding-top:15px}
	.site-branding {width:280px;float:left;margin-top:5px;}
	#headerbuttons {float:right;}
}
@media all and (min-width:780px) {
	ul#recipepage li {width:30%;margin-left:1.5%;margin-right:1.5%;}
	#topstrip_left {float:left;}
	#topstrip_right {float:right;margin-top:2px;}
	.main-navigation {width: auto;margin: 0px 5% 0 0;}
	#primary-menu {margin-bottom:0px;background:transparent;position:relative;top: auto;left: auto;width: 100%;text-align: center;}
	#primary-menu li a {border-right:solid rgba(255,255,255,0.5) 1px;font-size:14px;padding: 0px 7px 1px;margin:10px 0px;}
	#primary-menu li ul li a {border-right:0;padding:10px 15px 10px;margin:0px 0px;line-height:19px;text-align: left;}
	#featurebuttons_left {float:left;}
	#featurebuttons_right {float:right;padding-top:24px;}
	.site-branding {width:420px;margin-top:0px;}
	#headerbuttons {margin-top:10px;}
	.wp_rp_wrap .wp_rp_content ul li {width:23%!important;}
}

@media all and (min-width:980px) {
	#featurebuttons_left a img {width:auto;margin-right:20px;}
	#featurebuttons_right {margin-top:12px;}

	.site-branding {width:520px;margin-top:0px;}
	#headerbuttons a {font-size:12px;line-height:16px;width:100px;height:100px;margin-left:10px;padding-top:16px;}

}


@media all and (min-width:1180px) {

	ul#recipepage li {width:22%;margin-left:1.5%;margin-right:1.5%;}
	.site-branding {width:auto;}
	#headerbuttons {margin-top:22px;}
	#primary-menu li a {padding:0px 14px 1px;}
	#featurebuttons_right a {margin-left:5px;}

}
 

@media all and (min-width:1600px) {
}

.entry-content img {
    border: solid #53abe3 4px;max-width:490px;height:auto;
}
.tasty-recipes-entry-header .tasty-recipes-buttons img.svg-print, .tasty-recipes-entry-header .tasty-recipes-buttons img.svg-pinterest {
    display: none!important;
}

.tasty-recipes-entry-header .tasty-recipes-buttons {
    margin: 0;
}

.tasty-recipes-entry-content hr {
    background: transparent;
    height: 5px;
    margin: 10px 0;
    background: #eee;
    border: 0;
}

.tasty-recipes {padding:20px;
    background: #fff;
    border: solid #eee 9px;
    margin: 10px 0 0 0;
    border-radius: 20px;
}

.tasty-recipes-entry-header {
    background: transparent;
}

.tasty-recipes-entry-content {
    background: transparent;
}

.tasty-recipes h3 {
    font-weight: 700;
    margin: 0;
}
.tasty-recipes h2 {
    font-weight: 700;
    margin: 0;
}

.tasty-recipes-entry-content .tasty-recipes-description, .tasty-recipes-entry-content .tasty-recipes-ingredients, .tasty-recipes-entry-content .tasty-recipes-instructions, .tasty-recipes-entry-content .tasty-recipes-keywords {
    padding-left: 1em;
    padding-right: 1em;
}

.tasty-recipes-entry-content .tasty-recipes-ingredients ol > li:before, .tasty-recipes-entry-content .tasty-recipes-instructions ol > li:before {background-color: #78112C;}

.tasty-recipes-entry-content .tasty-recipes-ingredients ol > li, .tasty-recipes-entry-content .tasty-recipes-instructions ol > li {
    margin-bottom: 5px;
}
.tasty-recipes-entry-content hr:last-child{display:none;}
.tasty-recipes-entry-header .tasty-recipes-header-content {
    min-height: 135px;
}
@media all and (max-width:779px) { 
aside#secondary {
    clear: both;
}
}

.featuredimage {
    border: solid #53abe3 4px;margin:auto;display:block;
	max-width:100%;margin-bottom:30px;
    height: auto;
}