/*
Theme Name: BlessThisMess
Theme URI: http://www.mycutelobsterdesigns.etsy.com
Author: mycutelobsterdesigns
Author URI: http://www.mycutelobsterdesigns.etsy.com
Description: BlessThisMessPlease theme for WordPress, custom designed by mycutelobster
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, mycutelobster, custom, blessthismess
Text Domain: mycutelobster

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents:
 *
 * 1.0 - Reset
 * 2.0 - Repeatable Patterns
 * 3.0 - Basic Structure
 * 4.0 - Header
 *   4.1 - Site Header
 *   4.2 - Navigation
 * 5.0 - Content
 *   5.1 - Entry Header
 *   5.2 - Entry Meta
 *   5.3 - Entry Content
 *   5.4 - Galleries
 *   5.5 - Attachments
 *   5.6 - Post/Paging Navigation
 *   5.7 - Author Bio
 *   5.8 - Archives
 *   5.9 - Search Results/No posts
 *   5.10- 404
 *   5.11 - Comments
 *   5.12 - Multisite
 * 6.0 - Sidebar
 *   6.1 - Widgets
 * 7.0 - Footer
 * 8.0 - Layout Widths
 *   8.1 - Flexible Widget Areas
 * 9.0 - Media Queries
 * 10.0 - Print
 * ----------------------------------------------------------------------------
 */
 
@import url(http://fonts.googleapis.com/css?family=Karla);
@import url(http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300);

/**
 * 1.0 Reset
 *
 * Modified from Normalize.css to provide cross-browser consistency and a smart
 * default styling of HTML elements.
 *
 * @see http://git.io/normalize
 * ----------------------------------------------------------------------------
 */
 
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
video {
	display: inline-block;
}

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

[hidden] {
	display: none;
}

html {
	font-size: 100%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html,
body,
button,
input,
select,
textarea {
	font-family: 'Karla', 'Century Gothic', Arial, sans-serif;
}

body {
	color: #444444;
	line-height: 1.5;
	margin: 0;
	font-size: 15px;
}

a, a:visited {
	color: #eb727b;
	text-decoration: none;
}

a:focus {
	outline: thin dotted;
}

a:active,
a:hover {
	color: #89b659;
	outline: 0;
	text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	line-height: 1.3;
	font-family: 'Open Sans Condensed', 'Karla', Arial, sans-serif;
}

h1 {
	font-size: 22px;
	margin: 15px 0;
	color: #EB727B;
}

h2 {
	font-size: 20px;
	margin: 10px 0;
}

h3 {
	font-size: 18px;
	margin: 10px 0;
}

h4 {
	font-size: 18px;
	margin: 10px 0;
}

h5 {
	font-size: 16px;
	margin: 10px 0;
}

h6 {
	font-size: 14px;
	margin: 10px 0;
}

address {
	font-style: italic;
	margin: 0 0 20px;
}

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

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

mark {
	background: #f15d5d;
	color: #fff;
}

p {
	margin: 0 0 20px;
}

code,
kbd,
pre,
samp {
	font-family: monospace, serif;
	font-size: 14px;
}

pre {
	background: #dcebcc;
	color: #eb727b;
	font-family: monospace;
	font-size: 14px;
	margin: 20px 0;
	overflow: auto;
	padding: 20px;
	white-space: pre;
	white-space: pre-wrap;
	word-wrap: break-word;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
q:before
{
	display: block;
	content: "\201C";
	font-size: 80px;
	position: absolute;
	left: 8px;
	top: -15px;
	font-family: Georgia, serif;
}

blockquote {
	font-size: 15px;
	background: #dcebcc;
	margin: 25px 40px;
	padding: 25px 25px 1px 45px;
	line-height: 1.45;
	position: relative;
}

blockquote blockquote {
	margin-right: 0;
}

blockquote cite,
blockquote small {
	font-size: 15px;
	font-weight: normal;
	text-transform: uppercase;
}

blockquote em,
blockquote i {
	font-style: normal;
	font-weight: normal;
}

blockquote strong,
blockquote b {
	font-weight: 400;
}

small {
	font-size: smaller;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

dl {
	margin: 0 20px;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 0 20px;
}

menu,
ol,
ul {
	margin: 16px 0;
	padding: 0 0 0 40px;
}

ul {
	list-style-type: square;
}

nav ul,
nav ol {
	list-style: none;
	list-style-image: none;
}

li > ul,
li > ol {
	margin: 0;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	vertical-align: middle;
}

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

figure {
	margin: 0;
}

form {
	margin: 0;
}

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

legend {
	border: 0;
	padding: 0;
	white-space: normal;
}

button,
input,
select,
textarea {
	font-size: 100%;
	margin: 0;
	max-width: 100%;
	vertical-align: baseline;
}

button,
input {
	line-height: normal;
}

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

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

input[type="checkbox"],
input[type="radio"] {
	padding: 0;
}

input[type="search"] {
	-webkit-appearance: textfield;
	padding-right: 2px; /* Don't cut off the webkit search cancel button */
	width: 60%;
	margin-right: 8px;
}

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

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

textarea {
	overflow: auto;
	vertical-align: top;
}

table {
	border-bottom: 1px solid #dcebcc;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 14px;
	line-height: 2;
	margin: 0 0 20px;
	width: 100%;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}

caption {
	font-size: 16px;
	margin: 20px 0;
}

th {
	font-weight: bold;
	text-transform: uppercase;
}

td {
	border-top: 1px solid #dcebcc;
	padding: 6px 10px 6px 0;
}

del {
	color: #333;
}

ins {
	background: #dcebcc;
	text-decoration: none;
}

hr {
	border: 1px solid #dcebcc;
	margin: 0 0 15px;
}

/**
 * 2.0 Repeatable Patterns
 * ----------------------------------------------------------------------------
 */

.genericon:before,
.menu-toggle:after,
.featured-post:before,
.date a:before,
.entry-meta .author a:before,
.comments-link a:before,
.tags-links a:first-child:before,
.categories-links a:first-child:before,
.edit-link a:before,
.attachment .entry-title:before,
.attachment-meta:before,
.attachment-meta a:before,
.comment-awaiting-moderation:before,
.comment-reply-link:before,
.comment-reply-login:before,
.comment-reply-title small a:before {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font: normal 16px/1 Genericons;
	vertical-align: text-bottom;
}

/* Clearing floats */
.clear:after,
.attachment .entry-header:after,
.site-footer .widget-area:after,
.entry-content:after,
.page-content:after,
.navigation:after,
.nav-links:after,
.gallery:after,
.comment-form-author:after,
.comment-form-email:after,
.comment-form-url:after,
.comment-body:after {
	clear: both;
}

.clear:before,
.clear:after,
.attachment .entry-header:before,
.attachment .entry-header:after,
.site-footer .widget-area:before,
.site-footer .widget-area:after,
.entry-content:before,
.entry-content:after,
.page-content:before,
.page-content:after,
.navigation:before,
.navigation:after,
.nav-links:before,
.nav-links:after,
.gallery:before,
.gallery:after,
.comment-form-author:before,
.comment-form-author:after,
.comment-form-email:before,
.comment-form-email:after,
.comment-form-url:before,
.comment-form-url:after,
.comment-body:before,
.comment-body:after {
	content: "";
	display: table;
}

/* Assistive text */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}

.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: #eb727b;
	display: block;
	font-size: 14px;
	font-weight: bold;
	height: auto;
	line-height: normal;
	padding: 15px 23px 14px;
	position: absolute;
	left: 5px;
	top: 5px;
	text-decoration: none;
	width: auto;
	z-index: 144444400; /* Above WP toolbar */
}

/* Form fields, general styles first. */
button,
input,
textarea {
	border: 1px solid #b5b5b5;
	font-family: inherit;
	padding: 5px;
}

input,
textarea {
	color: #444444;
}

input:focus,
textarea:focus {
	border: 1px solid #b5b5b5;
	outline: 0;
}

/* Buttons */
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	background: #eb727b;
	border: none;
	color: #fff;
	display: inline-block;
	padding: 8px;
	text-decoration: none;
}

button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
	background: #efa257;
}

button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	background: #efa257;
}

.post-password-required input[type="submit"] {
	padding: 7px 25px 4px;
	vertical-align: bottom;
}

.post-password-required input[type="submit"]:active {
	padding: 5px 25px 6px;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #444444;
}

:-moz-placeholder {
	color: #444444;
}

::-moz-placeholder {
	color: #444444;
}

:-ms-input-placeholder {
	color: #444444;
}

/*
 * Responsive images
 *
 * Fluid images for posts, comments, and widgets
 */
.entry-content img,
.entry-summary img,
.comment-content img,
.widget img,
.wp-caption {
	max-width: 100%;
}

/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
.entry-content img,
.entry-summary img,
.comment-content img[height],
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
	margin-bottom: 15px;
}

img.size-full,
img.size-large,
img.wp-post-image {
	height: auto;
	max-width: 100%;
}

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

/* Override the Twitter embed fixed width. */
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important;
}

/* Images */
.alignleft {
	float: left;
}

.alignright {
	float: right;
}

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

img.alignleft {
	margin: 5px 20px 5px 0;
}

.wp-caption.alignleft {
	margin: 5px 10px 5px 0;
}

img.alignright {
	margin: 5px 0 5px 20px;
}

.wp-caption.alignright {
	margin: 5px 0 5px 10px;
}

img.aligncenter {
	margin: 5px auto;
}

img.alignnone {
	margin: 5px 0;
}

.wp-caption .wp-caption-text,
.entry-caption,
.gallery-caption {
	color: #444444;
	font-size: 16px;
}

img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol  {
	list-style-position: inside;
}

/**
 * 3.0 Basic Structure
 * ----------------------------------------------------------------------------
 */

.site {
	background-color: #fff;
	padding: 0;
	margin: 25px auto 0;
	max-width: 1150px;
	width: 100%;
}

.site-main {
	position: relative;
	padding: 0;
	float: left;
	clear: both;
	width: 63%;
}

.site-main .sidebar-inner {
	margin: 0 auto;
	max-width: 1150px;
}

/* Tabber Widget Styling
------------------------------------------------------------ */

.tabber-widget-rounded-light {
	color: #111;
	padding: 0 !important;
	margin: 0 !important;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs {
	list-style-type: none;
	padding: 0 !important;
	margin: 0 !important;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs li {
	float: left;
	list-style-type: none !important;
	padding: 0 !important;
	margin: 0 !important;
	border: none;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs li:before {
	content: "" !important;
}
.tabber-widget-rounded-light ul.tabber-widget-tabs a {
	display: block;
	padding: 6px 5px !important;
	text-decoration: none !important;
	margin: 1px;
	margin-left: 0;
	color: #FFF;
	background: #89bc82 !important;
	-moz-border-radius: 5px 5px 0px 0px;
	-khtml-border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;

}
.tabber-widget-rounded-light ul.tabber-widget-tabs a:hover {
	color: #FFF;
	background: #dcebcc !important;
	-moz-border-radius: 5px 5px 0px 0px;
	-khtml-border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;

}
.tabber-widget-rounded-light ul.tabber-widget-tabs a.selected,
.tabber-widget-rounded-light ul.tabber-widget-tabs a.selected:hover {
	margin-bottom: 0;
	color: #89bc82 !important;
	background: #dcebcc !important;
	border-bottom: 1px solid #dcebcc;
	cursor: default;
}

.tabber-widget-rounded-light .tabber-widget-content {
	padding: 10px 10px 8px 10px;
	margin: 0;
	clear: both;
	background: #dcebcc !important;
}

/* Style Content */

.tabber-widget-rounded-light .tabber-widget-content {
	text-align: left;
}
.tabber-widget-rounded-light .tabber-widget-content .tabber-widget-title {
	margin-top: 0;
	margin-bottom: 0 !important;
}

body.search .signature, body.search .sharedaddy, body.search div.wp_rp_content, .entry-small .signature, .entry-small .sharedaddy, .entry-small footer.entry-meta, .entry-small div.wp_rp_content {
	display: none !important;
}

.signature {
	text-align: center;
	margin-bottom: 20px;
}

#zlrecipe-container {
	background: #dcebcc !important;
	padding: 25px !important;
}

#zlrecipe-container .bold, #zlrecipe-container .strong {
	font-weight: normal !important;
}

#zlrecipe-container .border-bottom, #zlrecipe-container .b-b {
	border-bottom: none !important;
}

#zlrecipe-container p {
	margin: 1em 0 0 0 !important;
}

#zlrecipe-container ul {
	padding: 1em !important;
}

#zlrecipe-container #zlrecipe-ingredients-list, #zlrecipe-container #zlrecipe-instructions-list {
	background: #eef7e4 !important;
}

#blog_subscription-2 > form {
	text-align: center !important;
}

#subscribe-blog-blog_subscription-2 > p {
	margin: 0 0 10px 0 !important;
}

#scrolltriggered {
	background-color: #efa257 !important;
}

#scrolltriggered #inscroll {
	box-shadow: none !important;
	-moz-box-shadow: none !important;
	-webkit-box-shadow: none !important;
}

#scrolltriggered #closebox {
	background: #fff !important;
	color: #efa257 !important;
}

/**
 * 4.0 Header
 * ----------------------------------------------------------------------------
 */
 
#masthead img {
	height: auto;
	max-width: 100%;
}

.header-image {
	margin: 0 0 15px 0;
	max-width: 100% !important;
}

/**
 * 4.1 Site Header
 * ----------------------------------------------------------------------------
 */

.site-header {
	position: relative;
}

.site-header .home-link {
	color: #444444;
	display: block;
	margin: 0 auto;
	max-width: 1150px;
	padding: 0;
	text-decoration: none;
	width: 100%;
}

.site-header .site-title:hover {
	text-decoration: none;
}

.site-title {
	font-family: 'Open Sans Condensed', 'Karla', Arial, sans-serif;
	font-size: 40px;
	font-weight: normal;
	text-transform: uppercase;
	line-height: 1;
	margin: 0;
	padding: 50px 0 0 0;
	text-align: center;
}

.site-description {
	font-family: 'Open Sans Condensed', 'Karla', Arial, sans-serif;
	font-size: 20px;
	font-weight: normal;
	color: #eb727b;
	text-align: center;
	margin: 0;
	padding: 0 0 50px 0;
}

/**
 * 4.2 Navigation
 * ----------------------------------------------------------------------------
 */

.main-navigation {
	clear: both;
	margin: 0 auto;
	max-width: 1150px;
	position: relative;
}

ul.nav-menu,
div.nav-menu > ul {
	margin: 0;
	padding: 0;
}

.nav-menu li {
	display: inline-block;
	position: relative;
}

.nav-menu li a {
	color: #89b659;
	font-family: 'Karla', Arial, sans-serif;
	font-weight: normal;
	text-transform: uppercase;
	display: block;
	font-size: 15px;
	line-height: 1;
	padding: 10px 20px 10px 0;
	text-decoration: none;
}

.nav-menu li:hover > a,
.nav-menu li a:hover {
	color: #eb727b;
}

.nav-menu .sub-menu,
.nav-menu .children {
	background: #89b659;
	display: none;
	padding: 0;
	position: absolute;
	left: -2px;
	z-index: 99999;
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
	border-left: 0;
	left: 100%;
	top: 0;
}

ul.nav-menu ul a,
.nav-menu ul ul a {
	color: #fff;
	margin: 0;
	width: 150px;
	padding: 10px;
}

ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover {
	background: #eb727b;
	width: 150px;
	color: #fff;
}

ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul {
	display: block;
}

/* Navbar */
.navbar {
	margin: 0 auto 25px auto;
	width: 100%;
	text-align: left;
	border-bottom: 2px solid #dcebcc;
}


/* Secondary Navbar */
.secondary-main-navigation {
	clear: both;
	margin: 0 auto;
	max-width: 1150px;
	position: relative;
	color: #fff;
	font-size: 13px;
}

ul.secondary-nav-menu,
div.secondary-nav-menu > ul {
	margin: 0;
	padding: 0 10px;
}

.secondary-nav-menu li {
	display: inline-block;
	position: relative;
}

.secondary-nav-menu li a {
	color: #fff;
	font-family: 'Karla', Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	display: block;
	font-size: 13px;
	line-height: 1;
	padding: 10px 20px;
	text-decoration: none;
}

.secondary-nav-menu li:hover > a,
.secondary-nav-menu li a:hover {
	color: #444444;
}

.secondary-nav-menu .sub-menu,
.secondary-nav-menu .children {
	background: #89b659;
	display: none;
	padding: 0;
	position: absolute;
	left: -2px;
	z-index: 99999;
}

.secondary-nav-menu .sub-menu ul,
.secondary-nav-menu .children ul {
	border-left: 0;
	left: 100%;
	top: 0;
}

ul.secondary-nav-menu ul a,
.secondary-nav-menu ul ul a {
	color: #fff;
	margin: 0;
	width: 150px;
}

ul.secondary-nav-menu ul a:hover,
.secondary-nav-menu ul ul a:hover {
	background: #eb727b;
	width: 150px;
	color: #fff;
}

ul.secondary-nav-menu li:hover > ul,
.secondary-nav-menu ul li:hover > ul {
	display: block;
}

/* Navbar */
.secondary-navbar {
	margin: 0 auto 25px auto;
	width: 100%;
	text-align: right;
	background: #efa257;
}

/**
 * 5.0 Content
 * ----------------------------------------------------------------------------
 */

.hentry {
	padding: 0 0 50px 0;
}

.full-width {
	max-width: 1150px;
	padding: 0;
}

#primary #full-width {
	width: 100%;
}

.entry-header,
.entry-content,
.entry-summary,
.entry-meta {
	margin: 0 auto;
	max-width: 1150px;
	width: 100%;
}

.sidebar .entry-header,
.sidebar .entry-content,
.sidebar .entry-summary,
.sidebar .entry-meta {
	max-width: 1150px;
}

/**
 * 5.1 Entry Header
 * ----------------------------------------------------------------------------
 */

.sidebar .entry-header .entry-meta {
	padding: 0;
}

.entry-thumbnail img {
	display: block;
	margin: 0 0 10px 0;
}

.entry-header {
	margin-bottom: 15px;
}

.entry-title {
	font-weight: normal;
	margin: 0;
	font-size: 32px;
	font-family: 'Open Sans Condensed', 'Karla', Arial, sans-serif;
	text-transform: uppercase;
	color: #eb727b;
}

.entry-title a {
	color: #eb727b;
}

.entry-title a:hover {
	color: #89b659;
	text-decoration: none;
}


/**
 * 5.2 Entry Meta
 * ----------------------------------------------------------------------------
 */

.entry-meta {
	clear: both;
	font-size: 13px;
	text-transform: uppercase;
	color: #efa257;
	font-weight: bold;
	font-family: 'Karla', Arial, sans-serif;
}

.entry-meta a, .entry-meta > span a {
	color: #efa257;
}

.entry-meta a:active, .entry-meta a:hover {
	color: #444444;
	text-decoration: none;
}

.entry-meta > span {
	margin-right: 20px;
}

.entry-meta > span:last-child {
	margin-right: 0;
}


.single-author .entry-meta .author,
.sticky.format-standard .entry-meta .date,
.sticky.format-image .entry-meta .date,
.sticky.format-gallery .entry-meta .date {
	display: none;
}


/**
 * 5.3 Entry Content
 * ----------------------------------------------------------------------------
 */

.entry-content {
	word-wrap: break-word;
}

.entry-content a,
.comment-content a {
	color: #eb727b;
	text-decoration: underline;
}

.entry-content a:hover,
.comment-content a:hover {
	color: #89b659;
	text-decoration: none;
}

.entry-content blockquote {
	font-size: 15px;
}

.entry-content blockquote cite,
.entry-content blockquote small {
	font-size: 16px;
}

.entry-content img.alignleft,
.entry-content .wp-caption.alignleft {
	margin-left: 0;
}

.entry-content img.alignright,
.entry-content .wp-caption.alignright {
	margin-right: 0;
}/* Custom Recipes */.entry-summary-cat {	width: 24%;		display: inline-block;		margin: 0;		padding: 0;		vertical-align: top;	}.entry-summary-cat .hentry {	margin: 0;		padding: 0;	}.entry-summary-cat p {	display: none;	}.entry-summary-cat .entry-title {    color: #fff;	    font-family: 'Karla', Arial, sans-serif;	    font-size: 14px;	    font-weight: bold;	    margin: 0;	    text-transform: uppercase;	    max-width: 170px;	    opacity: 0.9;	    background: #eb727b;		padding: 5px;		overflow: hidden;		height: 43px;	}.entry-summary-cat .entry-title a {	color: #fff;	}.entry-summary-cat .entry-title a:hover { 	color: #444;	}.entry-summary-cat img.alignleft {	margin: 5px 20px -43px 0;	}.catablog-navigation {    display: none;	}.catablog-gallery.catablog-row .catablog-title {    width: 170px !important;	}.catablog-gallery.catablog-row .catablog-title {    display: block !important;	    opacity: 0.9 !important;	    background: #eb727b !important;	    font-family: 'Karla', Arial, sans-serif !important;	    font-size: 14px !important;	    font-weight: bold !important;	    text-transform: uppercase !important;	}a.catablog-title {	cursor: pointer !important;		text-decoration: none !important;	}a.catablog-title:hover {	color: #444 !important;	}

footer.entry-meta {
	margin-top: 15px;
	padding: 0;
	text-transform: uppercase;
	color: #efa257;
	font-size: 15px;
	font-family: 'Open Sans Condensed', 'Karla', Arial, sans-serif;
	font-weight: normal;
	text-align: right;
}

/***** CUSTOM STYLES ****/
.amazon_product {
	width:25%;
	float:left;
	line-height: 16px !important;
}
.amazon-products {
	background:#dcebcc;
	padding:0 10px 20px 10px;
	margin-top: -20px;
	margin-bottom: 20px;
	height: 308px;
}
.amazon-products h3 {
	text-align:left;
	text-transform:uppercase;
	color:#000;
font-size: 20px;
letter-spacing: 2px;
padding-left: 15px;
  margin-bottom: 0 !important;
}
.amazon_thumb {
	background:#FFF;
	border:6px solid #cfea73;
	text-align:center;
}
.amazon-products img {
	margin:0 auto !important;
	height:99% !important;
border: none !important;

}

.amazon_image_wrap {
width: 100%;
height: 168px;
background: #fff;
padding: 10px;
border: 6px solid #eb727b;
}

.disclaimer p {
text-align: center;
font-size: 11px;
width: 80%;
margin: 0 auto;
padding-bottom: 50px;
}

.disclaimer h3 {
	color: #37877c;
font-size: 24px;
font-family: 'Unica One', Arial, sans-serif;
}

.amazon_image_wrap:hover {
	border-color: #89b659 !important;
}

.amazon-products a {
	line-height:100% !important;
	font-size:10px;
	text-transform:uppercase;
	font-weight:bold;
	font-family: 'Quicksand', Arial, sans-serif;
letter-spacing: 0;
text-decoration: none;
}

.amazon-products a:hover {
	text-decoration: underline;
}
.amazon-products p {
	line-height: 100% !important;
	margin: 10px 0px 5px 0px !important;
}

footer.entry-meta a {
	color: #efa257;
	text-decoration: none;
}

footer.entry-meta a:active, footer.entry-meta a:hover {
	color: #89b659;
}

.comments-link {
	background: url(images/icon-comments.png) center left no-repeat;
	padding-left: 23px;
}

.categories-link {
	background: url(images/icon-categories.png) center left no-repeat;
	padding-left: 23px;
}

.single footer.entry-meta, .page footer.entry-meta {
	display: none;
}

.format-standard footer.entry-meta {
	margin-top: 0;
}

/* Page links */
.page-links {
	clear: both;
	font-size: 16px;
	font-weight: normal;
	line-height: 2.2;
	margin: 20px 0;
	text-transform: uppercase;
}

.page-links a. 
.page-links > span {
	background: #eb727b;
	color: #fff;
	padding: 5px 10px;
	text-decoration: none;
}

.page-links a:hover {
	background: #dcebcc;
	color: #eb727b;
}

.format-quote .entry-content .page-links > span {
	background: none;
}

.page-links .page-links-title {
	background: transparent;
	border: none;
	margin-right: 20px;
	padding: 0;
}

/* Mediaelements */
.hentry .mejs-mediaelement,
.hentry .mejs-container .mejs-controls {
	background: #444444;
}

.hentry .mejs-controls .mejs-time-rail .mejs-time-loaded,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	background: #fff;
}

.hentry .mejs-controls .mejs-time-rail .mejs-time-current {
	background: #444444;
}

.hentry .mejs-controls .mejs-time-rail .mejs-time-total,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total {
	background: #eb727b;
}

.hentry .mejs-controls .mejs-time-rail span,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total,
.hentry .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	border-radius: 0;
}


/**
 * 5.4 Galleries
 * ----------------------------------------------------------------------------
 */

.gallery {
	margin-bottom: 20px;
	margin-left: -4px;
}

.gallery-item {
	float: left;
	margin: 0 4px 4px 0;
	overflow: hidden;
	position: relative;
}

.gallery-columns-1.gallery-size-medium,
.gallery-columns-1.gallery-size-thumbnail,
.gallery-columns-2.gallery-size-thumbnail,
.gallery-columns-3.gallery-size-thumbnail {
	display: table;
	margin: 0 auto 20px;
}

.gallery-columns-1 .gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item {
	text-align: center;
}

.gallery-columns-4 .gallery-item {
	max-width: 23%;
	max-width: -webkit-calc(25% - 4px);
	max-width:         calc(25% - 4px);
}

.gallery-columns-5 .gallery-item {
	max-width: 19%;
	max-width: -webkit-calc(20% - 4px);
	max-width:         calc(20% - 4px);
}

.gallery-columns-6 .gallery-item {
	max-width: 15%;
	max-width: -webkit-calc(16.7% - 4px);
	max-width:         calc(16.7% - 4px);
}

.gallery-columns-7 .gallery-item {
	max-width: 13%;
	max-width: -webkit-calc(14.28% - 4px);
	max-width:         calc(14.28% - 4px);
}

.gallery-columns-8 .gallery-item {
	max-width: 11%;
	max-width: -webkit-calc(12.5% - 4px);
	max-width:         calc(12.5% - 4px);
}

.gallery-columns-9 .gallery-item {
	max-width: 9%;
	max-width: -webkit-calc(11.1% - 4px);
	max-width:         calc(11.1% - 4px);
}

.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
	margin-right: 0;
}

.gallery-caption {
	background-color: rgba(0, 0, 0, 0.7);
	box-sizing: border-box;
	color: #fff;
	font-size: 14px;
	line-height: 1.3;
	margin: 0;
	max-height: 50%;
	opacity: 0;
	padding: 2px 8px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	-webkit-transition: opacity 400ms ease;
	transition:         opacity 400ms ease;
	width: 100%;
}

.gallery-caption:before {
	box-shadow: 0 -10px 15px #444444 inset;
	content: "";
	height: 100%;
	min-height: 49px;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}


/**
 * 5.5 Attachments
 * ----------------------------------------------------------------------------
 */

.attachment .hentry {
	margin: 0;
	padding: 0;
}

.attachment .entry-header {
	margin-bottom: 0;
	max-width: 1150px;
	width: 1150px;
	padding: 25px 0;
}

.attachment .entry-title {
	display: inline-block;
	float: left;
	font-family: 'Open Sans Condensed', 'Karla', Arial, sans-serif;
	font-size: 32px;
	font-weight: normal;
	margin: 0;
}

.attachment .entry-title:before {
	content: "\f416";
	font-size: 32px;
	margin-right: 10px;
}

.attachment .entry-meta {
	clear: none;
	color: inherit;
	float: right;
	max-width: 1150px;
	padding: 9px 0 0;
	text-align: right;
}

.hentry.attachment:not(.image-attachment) .entry-meta {
	max-width: 104px;
}

.attachment footer.entry-meta {
	display: none;
}

.attachment-meta:before {
	content: "\f307";
}

.full-size-link a:before {
	content: "\f402";
}

.full-size-link:before {
	content: none;
}

.attachment .entry-meta a,
.attachment .entry-meta .edit-link:before,
.attachment .full-size-link:before {
	color: #eb727b;
}

.attachment .entry-content {
	background-color: #fff;
	max-width: 100%;
	padding: 40px 0;
}

.image-navigation {
	margin: 0 auto;
	max-width: 1150px;
	width: 1150px;
	position: relative;
}

.image-navigation a:hover {
	text-decoration: none;
}

.image-navigation .nav-previous {
	left: 0;
}

.image-navigation .nav-next {
	right: 0;
}

.image-navigation .meta-nav {
	font-size: 32px;
	font-weight: normal;
	vertical-align: -4px;
}

.attachment .entry-attachment,
.attachment .type-attachment p {
	margin: 0 auto;
	max-width: 683px;
	text-align: center;
}

.attachment .entry-attachment .attachment {
	display: inline-block;
}

.attachment .entry-caption {
	text-align: left;
}

.attachment .entry-description {
	margin: 20px auto 0;
	max-width: 1150px;
}

.attachment .entry-caption p:last-child,
.attachment .entry-description p:last-child {
	margin: 0;
}



/**
 * 5.6 Post/Paging Navigation
 * ----------------------------------------------------------------------------
 */

.navigation .nav-previous {
	float: left;
}

.navigation .nav-next {
	float: right;
}

.navigation a, .navigation a:active {
	color: #eb727b;
}

.navigation a:hover {
	color: #444444;
	text-decoration: none;
}

.paging-navigation {
	padding: 0;
}

.paging-navigation .nav-links {
	margin: 0 auto;
	max-width: 1150px;
	width: 100%;
}

.sidebar .paging-navigation .nav-links {
	max-width: 1150px;
	padding: 0;
}

.paging-navigation .nav-next, .post-navigation .nav-next {
	padding: 0;
}

.paging-navigation a, .post-navigation a,
.paging-navigation a:visited, .post-navigation a:visited {
	font-size: 14px;
	text-transform: uppercase;
	font-family: 'Karla', Arial, sans-serif;
}

.paging-navigation .meta-nav, .post-navigation .meta-nav {
	background: #eb727b;
	color: #fff;
	display: inline-block;
	font-size: 20px;
	text-align: center;
	width: 30px;
}

.paging-navigation .nav-previous .meta-nav {
	margin-right: 5px;
	padding: 5px 0 8px;
	width: 30px;
	height: 30px;
	line-height: 0.9em;
}

.paging-navigation .nav-next .meta-nav  {
	margin-left: 5px;
	padding: 5px 0 8px;
	width: 30px;
	height: 30px;
	line-height: 0.9em;
}

.paging-navigation a:active .meta-nav, .post-navigation a:active .meta-nav,
.paging-navigation a:hover .meta-nav, .post-navigation a:hover .meta-nav  {
	background: #89b659;
	text-decoration: none;
}

.post-navigation .nav-links {
	margin: 0 auto 45px;
	max-width: 1150px;
}

.sidebar .post-navigation .nav-links {
	padding: 0;
}

.post-navigation a[rel="next"], .post-navigation a:visited[rel="next"] {
	float: right;
	text-align: right;
	margin-left: 5px;
}

.post-navigation a[rel="prev"] .meta-nav, .post-navigation a:visited[rel="prev"] .meta-nav {
	margin-right: 5px;
}


/**
 * 5.7 Author Bio
 * ----------------------------------------------------------------------------
 */

.author-info {
	margin: 0 auto;
	max-width: 1150px;
	padding: 15px 0;
	text-align: left;
	width: 100%;
}

.author.sidebar .author-info {
	max-width: 1150px;
	padding: 15px 15px 1px 15px;
	background: #dcebcc;
	margin-bottom: 25px;
}

.single .author-info {
	padding: 15px 15px 0 15px;
}

.author-avatar .avatar {
	float: left;
	margin: 0 20px 20px 0;
}

.author-description .author-title {
	clear: none;
	font-family: 'Karla', 'Century Gothic', Arial, sans-serif;
	font-weight: normal;
	font-size: 20px;
	margin: 0 0 8px;
}

.author-link {
	color: #eb727b;
	margin-left: 2px;
}

.author.archive .author-link {
	display: none;
}

p.author-bio {
	text-transform: none;
	font-family: 'Karla', 'Century Gothic', Arial, sans-serif;
}

.author-bio a {
	text-decoration: underline;
}

.author-bio a:active, .author-bio a:hover {
	text-decoration: none;
}


/**
 * 5.8 Archives
 * ----------------------------------------------------------------------------
 */

.archive-title,
.archive-meta {
	font-family: 'Open Sans Condensed', 'Karla', Arial, sans-serif;
	font-size: 21px;
	font-weight: normal;
	margin: 0 auto;
	max-width: 1150px;
	padding: 0 0 15px 0;
	width: 100%;
}

.archive-meta {
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
	margin-top: -15px;
	padding: 0 0 11px;
}

.sidebar .archive-meta {
	margin: 0 auto;
	max-width: 1150px;
	padding: 15px 0px;
}


/**
 * 5.9 Search Results/No posts
 * ----------------------------------------------------------------------------
 */

.page-title {
	font-family: 'Open Sans Condensed', 'Karla', Arial, sans-serif;
	font-size: 32px;
	font-weight: normal;
	margin: 0 auto;
	max-width: 1150px;
	padding: 0 0 15px 0;
	width: 100%;
}

.page-content {
	margin: 0 auto;
	max-width: 1150px;
	padding: 15px 0;
	width: 100%;
}

.sidebar .page-content {
	margin: 0 auto;
	max-width: 1150px;
	padding: 15px 0px;
}


/**
 * 5.10 404
 * ----------------------------------------------------------------------------
 */

.error404 .page-header,
.error404 .page-content {
	margin: 0 auto;
	max-width: 1150px;
	padding-bottom: 40px;
	width: 100%;
}


/**
 * 5.11 Comments
 * ----------------------------------------------------------------------------
 */

.comments-title,
.comment-list,
.comment-reply-title,
.must-log-in,
.comment-respond .comment-form,
.comment-respond iframe {
	display: block;
	margin-left: auto;
	margin-right: auto;
	max-width: 1150px;
	width: 100%;
}

.sidebar .comments-title,
.sidebar .comment-list,
.sidebar .must-log-in,
.sidebar .comment-reply-title,
.sidebar .comment-navigation,
.sidebar .comment-respond .comment-form {
	max-width: 1150px;
	padding: 0;
}


.comment-list,
.comment-list .children {
	list-style-type: none;
	padding: 0;
}

.comment-list .children {
	margin-left: 20px;
	background: #f6ede5;
	padding: 15px;
}

.comment-body {
	padding: 15px 0;
	position: relative;
}

.comment-author {
	float: left;
	max-width: 74px;
}

.comment-author .avatar {
	display: block;
	margin-bottom: 10px;
}

.comment-author .fn {
	word-wrap: break-word;
}

.comment-author .fn,
.comment-author .url,
.comment-reply-link,
.comment-reply-login {
	color: #eb727b;
	font-size: 14px;
	font-style: normal;
	font-weight: normal;
	text-decoration: underline;
}

.comment-author .fn:hover,
.comment-author .url:hover,
.comment-reply-link:hover,
.comment-reply-login:hover {
	text-decoration: none;
}

.says {
	display: none;
}

.no-avatars .comment-author {
	margin: 0 0 5px;
	max-width: 100%;
	position: relative;
}

.no-avatars .comment-metadata,
.no-avatars .comment-content,
.no-avatars .comment-list .reply {
	width: 100%;
}

.comment-list .edit-link {
	margin-left: 20px;
}

.comment-metadata,
.comment-awaiting-moderation,
.comment-content,
.comment-list .reply {
	float: right;
	width: 79%;
	width: -webkit-calc(100% - 124px);
	width:         calc(100% - 124px);
	word-wrap: break-word;
}

.comment-meta,
.comment-meta a {
	color: #eb727b;
	font-size: 13px;
}

.comment-metadata {
	margin-bottom: 20px;
}

.ping-meta {
	color: #eb727b;
	font-size: 13px;
	line-height: 2;
}

.comment-awaiting-moderation {
	color: #eb727b;
}

.comment-awaiting-moderation:before {
	content: "\f414";
	margin-right: 5px;
	position: relative;
	top: -2px;
}

.comment-reply-link:before,
.comment-reply-login:before {
	content: "\f412";
	margin-right: 3px;
}

/* Comment form */
.comment-respond {
	padding: 30px 0;
}

.comment .comment-respond {
	margin-bottom: 20px;
	padding: 20px;
	background: #fff;
}

.comments-title, .comment-reply-title {
	font-family: 'Open Sans Condensed', 'Karla', Arial, sans-serif;
	text-transform: uppercase;
	color: #89b659;
	font-weight: normal;
	font-size: 24px;
}

.comment-reply-title small a, .comment-reply-title small a:visited {
	color: #89b659;
	display: inline-block;
	float: right;
	height: 16px;
	overflow: hidden;
	width: 16px;
}

.comment-reply-title small a:active, .comment-reply-title small a:hover {
	color: #eb727b;
	text-decoration: none;
}

.comment-reply-title small a:before {
	content: "\f406";
	vertical-align: top;
}

.sidebar .comment-list .comment-reply-title,
.sidebar .comment-list .comment-respond .comment-form {
	padding: 0;
}

.comment-form .comment-notes {
	margin-bottom: 15px;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url {
	margin-bottom: 8px;
}

.comment-form [for="author"],
.comment-form [for="email"],
.comment-form [for="url"],
.comment-form [for="comment"] {
	float: left;
	padding: 5px 0;
	width: 120px;
}

.comment-form .required {
	color: #de241b;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	max-width: 270px;
	width: 60%;
}

.comment-form textarea {
	width: 100%;
}

.form-allowed-tags,
.form-allowed-tags code {
	color: #eb727b;
	font-size: 12px;
	display: none;
}

.form-allowed-tags code {
	font-size: 10px;
	margin-left: 3px;
}

.comment-list .pingback,
.comment-list .trackback {
	padding-top: 25px;
}

.comment-navigation {
	font-size: 16px;
	margin: 0 auto;
	max-width: 1150px;
	padding: 20px 0 30px;
	width: 100%;
}

.no-comments {
	background-color: #f6ede5;
	font-size: 20px;
	margin: 0;
	padding: 40px 0;
	text-align: center;
}

.sidebar .no-comments {
	padding: 0;
}


/**
 * 5.12 Multisite
 * ----------------------------------------------------------------------------
 */

.site-main .mu_register {
	margin: 0 auto;
	max-width: 1150px;
	width: 100%;
}

.mu_alert {
	margin-top: 25px;
}

.site-main .mu_register input[type="submit"],
.site-main .mu_register #blog_title,
.site-main .mu_register #user_email,
.site-main .mu_register #blogname,
.site-main .mu_register #user_name {
	font-size: inherit;
	width: 270px;
}

.site-main .mu_register input[type="submit"] {
	width: auto;
}


/**
 * 6.0 Sidebar
 * ----------------------------------------------------------------------------
 */

.site-main .widget-area {
	float: right;
	width: 325px;
	padding: 0;
}


/**
 * 6.1 Widgets
 * ----------------------------------------------------------------------------
 */

.widget {
	font-size: 15px;
	margin: 0 0 40px 0;
	word-wrap: break-word;
}

.widget .widget-title {
	font-family: 'Karla', Arial, sans-serif;
	font-size: 13px; 
	font-weight: bold;
	color: #444444;
	padding: 0;
	text-align: left;
	text-transform: uppercase;
	margin: 0 0 5px;
	background: #dcebcc;
	padding: 5px;
}

.widget ul,
.widget ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.widget li {
	padding: 0 0 7px 0;
}

.widget .children li:last-child {
	padding-bottom: 0;
}

.widget li > ul,
.widget li > ol {
	margin-left: 20px;
}

.widget a, .widget a:visited {
	color: #eb727b;
	text-decoration: underline;
}

.widget a:active, .widget a:hover {
	color: #444444;
	text-decoration: none;
}

/* Search widget */
.search-form .search-submit {
	padding: 5px 10px;
	text-transform: uppercase;
}

/* RSS Widget */
.widget_rss .rss-date {
	display: block;
}

.widget_rss .rss-date,
.widget_rss li > cite {
	color: #eb727b;
}

/* Calendar Widget */
.widget_calendar table,
.widget_calendar td {
	border: 0;
	border-collapse: separate;
	border-spacing: 1px;
}

.widget_calendar caption {
	font-size: 14px;
	margin: 0;
}

.widget_calendar th,
.widget_calendar td {
	padding: 0;
	text-align: center;
}

.widget_calendar a {
	display: block;
}

.widget_calendar tbody td {
	background-color: rgba(255, 255, 255, 0.5);
}

.site-footer .widget_calendar tbody td {
	background-color: rgba(255, 255, 255, 0.05);
}

.widget_calendar tbody .pad, .site-footer .widget_calendar tbody .pad {
	background-color: transparent;
}


/**
 * 7.0 Footer
 * ----------------------------------------------------------------------------
 */
 
#colophon {
	clear: both;
}

.site-footer {
	color: #444444;
	font-size: 14px;
	text-align: center;
}

.site-footer .widget-area,
.sidebar .site-footer {
	text-align: left;
}

.site-footer a, .site-footer a:visited {
	text-decoration: underline;
}

.site-footer a:active, .site-footer a:hover {
	text-decoration: none;
}

.site-footer .sidebar-container {
	padding: 50px 0 20px 0;
}

.site-footer .widget-area {
	margin: 0 auto;
	max-width: 1150px;
	width: 100%;
}

.site-footer .widget {
	background: transparent;
	color: #444444;
	float: left;
	margin-right: 30px;
	padding: 0;
	width: 285px;
}

.sidebar .site-footer .widget {
	width: 240px;
}

.sidebar .site-footer .widget:nth-of-type(4),
.sidebar .site-footer .widget:nth-of-type(3) {
	margin-right: 0;
}

.site-footer .widget a {
	color: #eb727b;
}

.site-footer .wp-caption-text {
	color: #eb727b;
}

.site-info {
	margin: 0 auto;
	max-width: 1150px;
	padding: 15px 0;
	width: 100%;
	text-align: center;
}

.footer-advert {
	text-align: center;
}

#wpstats {
	display: none;
	margin: -10px auto 0;
}


/**
 * 8.0 Layout Widths
 * ----------------------------------------------------------------------------
 */

#primary {
	float: left;
	width: 100%;
}

#secondary {
	width: 30%;
	float: right;
}

/**
 * 8.1  Flexible Widget Areas - number of widgets per row (1, 2, 3 or 4) changes depending on number of widgets used
 * ----------------------------------------------------------------------------
 */
 
.flexible-widget-area .widget {
	margin: 0 0 30px 0;
	float: left;
	width: 100%;
	padding: 0 15px;
	text-align: left;
}

.flexible-widget-area .widget .widget-title {
	text-align: left;
}

.flexible-widget-area.widget-count-1 .widget {
	padding: 0;
	width: 100%;
}

/* Two per row */
.flexible-widget-area.per-row-2 .widget {
    width: 50%;
}

.flexible-widget-area.per-row-2 .widget:nth-of-type(2n+1) {
	clear: left;
	padding-left: 0;
}

.flexible-widget-area.per-row-2 .widget:nth-of-type(2n) {
	padding-right: 0;
}

/* Three per row */
.flexible-widget-area.per-row-3 .widget {
    width: 33.33333%;
}

.flexible-widget-area.per-row-3 .widget:nth-of-type(3n+1) {
	clear: left;
	padding-left: 0;
}

.flexible-widget-area.per-row-3 .widget:nth-of-type(3n) {
	padding-right: 0;
}

/* Four per row */
.flexible-widget-area.per-row-4 .widget {
    width: 25%;
}

.flexible-widget-area.per-row-4 .widget:nth-of-type(4n+1) {
	clear: left;
	padding-left: 0;
}
.flexible-widget-area.per-row-4 .widget:nth-of-type(4n) {
	padding-right: 0;
}



/**
 * 9.0 Media Queries
 * ----------------------------------------------------------------------------
 */

@media (max-width: 1599px) {
	.site {
		border: 0;
	}
	
}

@media (max-width: 1069px) {


	.site-header {
		padding: 0 15px;
	}

	.sidebar img.alignleft,
	.sidebar .wp-caption.alignleft {
		margin-left: 0;
	}

	.sidebar img.alignright,
	.sidebar .wp-caption.alignright {
		margin-right: 0;
	}

	.error404 .page-header {
		margin-left: auto;
		max-width: 1150px;
		width: 100%;
	}
	
	.archive-header,
	.search .page-header,
	.archive .page-header,
	.blog .page-header,
	.error404 .page-content,
	.search .page-content,
	.archive .page-content,
	.attachment .entry-header,
	.attachment .entry-content,
	.post-navigation .nav-links,
	.sidebar .site-info {
		padding-left: 15px;
		padding-right: 15px;
	}

	.attachment .image-navigation {
		max-width: 683px;
	}

	.image-navigation .nav-previous,
	.image-navigation .nav-next {
		position: static;
	}

	.site-main .widget-area {
		margin-right: 0;
	}
}

@media (max-width: 999px) {


	.site-header {
		padding: 0 15px;
	}
	
	img.size-full,
	img.size-large,
	img.wp-post-image {
		height: auto;
		max-width: 100%;
	}

	.sidebar .entry-header,
	.sidebar .entry-content,
	.sidebar .entry-summary,
	.sidebar .comment-list,
	.sidebar .comment-reply-title,
	.sidebar .comment-navigation,
	.sidebar .comment-respond .comment-form,
	.sidebar .featured-gallery,
	.sidebar .post-navigation .nav-links,
	.author.sidebar .author-info {
		max-width: 1150px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.sidebar .site-info,
	.search.sidebar .page-content,
	.blog.sidebar .page-content,
	.attachment .entry-header,
	.sidebar .comments-title {
		max-width: 1150px;
	}

	.sidebar .archive-meta,
	.attachment .entry-header,
	.search.sidebar .page-content,
	.blog.sidebar .page-content,
	.sidebar .site-info,
	.sidebar .comments-title,
	.sidebar .no-comments {
		padding-left: 0;
		padding-right: 0;
	}

	.attachment .entry-meta {
		float: left;
		text-align: left;
		width: 100%;
	}

	.attachment .entry-content {
		max-width: 100%;
		padding: 40px 0;
	}

	.sidebar .paging-navigation .nav-links {
		padding: 0;
	}

	.site-main .widget-area {
		float: none;
		margin: 0;
		width: 100%;
	}

	.sidebar .site-footer .widget-area {
		max-width: 100%;
		left: 0;
	}
}

/* Collapse oversized image and pulled images after iPad breakpoint. */
@media (max-width: 767px) {

	.site-main {
		width: 100%;
	}
	
	
	.site-header {
		padding: 0 15px;
	}

	img.size-full,
	img.size-large,
	img.wp-post-image {
		height: auto;
		max-width: 100%;
	}

	.entry-content img.alignleft,
	.entry-content .wp-caption.alignleft {
		margin-left: 0;
	}

	.entry-content img.alignright,
	.entry-content .wp-caption.alignright {
		margin-right: 0;
	}

	.attachment .image-navigation,
	.attachment .entry-attachment .attachment {
		max-width: 1150px;
		padding: 0;
		width: 100%;
	}

	.gallery-caption {
		display: none;
	}
}

@media (max-width: 643px) {
	.entry-summary-cat {			width: 45%;				}		.entry-summary-cat .entry-title {			display: none;		}
	.footer-advert img {
		max-width: 300px !important;
		height: auto;
	}

	.site-main {
		width: 100%;
	}

	.site-header {
		padding: 0 15px;
	}

	img.size-full,
	img.size-large,
	img.wp-post-image {
		height: auto;
		max-width: 100%;
	}

	.secondary-navbar {
		text-align: center;
	}

	#primary, .site-main {
		width: 100%;
	}

	#secondary {
		width: 100%;
	}

	.site-main .widget-area {
		padding: 0;
	}

	.paging-navigation {
		margin-bottom: 50px;
	}
	
	/* Flexible widget areas - number of widgets per row (1, 2, 3 or 4) changes depending on number of widgets used */
	.flexible-widget-area .widget {
		margin: 0 0 30px 0;
		float: left;
		width: 100%;
		padding: 0;
	}
	
	.amazon_product {
	width:200px;
	float:none;
	margin: 0 auto;
	text-align: center;
	height: 1108px;
	
	}
	
	.flexible-widget-area.widget-count-1 .widget {
		padding: 0;
	}
	
	/* Two per row */
	.flexible-widget-area.per-row-2 .widget {
		width: 100%;
	}
	
	.flexible-widget-area.per-row-2 .widget:nth-of-type(2n+1) {
		clear: left;
		padding-left: 0;
	}
	
	.flexible-widget-area.per-row-2 .widget:nth-of-type(2n) {
		padding-right: 0;
	}
	
	/* Three per row */
	.flexible-widget-area.per-row-3 .widget {
		width: 100%;
	}
	
	.flexible-widget-area.per-row-3 .widget:nth-of-type(3n+1) {
		clear: left;
		padding-left: 0;
	}
	
	.flexible-widget-area.per-row-3 .widget:nth-of-type(3n) {
		padding-right: 0;
	}
	
	/* Four per row */
	.flexible-widget-area.per-row-4 .widget {
		width: 100%;
	}
	
	.flexible-widget-area.per-row-4 .widget:nth-of-type(4n+1) {
		clear: left;
		padding-left: 0;
	}
	
	.flexible-widget-area.per-row-4 .widget:nth-of-type(4n) {
		padding-right: 0;
	}

	.site-title {
		font-size: 30px;
	}
	
	.site {
		padding: 0;
	}

	#content .entry-header,
	#content .entry-content,
	#content .entry-summary,
	#content footer.entry-meta,
	#content .featured-gallery,
	.entry-thumbnail img,
	.search.sidebar .page-content,
	.blog.sidebar .page-content,
	.sidebar .post-navigation .nav-links,
	.paging-navigation .nav-links,
	#content .author-info,
	.comments-area .comments-title,
	.comments-area .comment-list,
	.comments-area .comment-navigation,
	.comment-respond,
	.widget,
	.sidebar .site-info,
	.sidebar .paging-navigation .nav-links,
	.site-footer .widget-area {
		padding-left: 15px;
		padding-right: 15px;
	}

	/* Small menu 
	.menu-toggle {
		cursor: pointer;
		display: inline-block;
		font-family: 'Karla', 'Century Gothic', Arial, sans-serif;
		font-weight: bold;
		font-size: 19px;
		margin: 0;
		padding: 8px 0 8px 20px;
	}

	.menu-toggle:after {
		content: "\f502";
		font-size: 12px;
		padding-left: 8px;
		vertical-align: -4px;
	}

	.toggled-on .menu-toggle:after {
		content: "\f500";
		vertical-align: 2px;
	}

	.toggled-on .nav-menu,
	.toggled-on .nav-menu > ul {
		display: block;
		margin-left: 0;
		padding: 0;
		width: 100%;
	}

	.toggled-on li,
	.toggled-on .children {
		display: block;
	}

	.toggled-on .nav-menu li > ul {
		background-color: transparent;
		display: block;
		float: none;
		margin-left: 20px;
		position: relative;
		left: auto;
		top: auto;
	}

	.toggled-on .nav-menu li > ul a {
		color: #fff;
		width: auto;
	}

	.toggled-on .nav-menu li:hover > a,
	.toggled-on .nav-menu .children a {
		background-color: transparent;
		color: #fff;
	}

	.toggled-on .nav-menu li a:hover,
	.toggled-on .nav-menu ul a:hover {
		color: #eb727b;
	}

	ul.nav-menu,
	div.nav-menu > ul {
		display: none;
	} */

	#content .featured-gallery {
		padding-left: 25px;
	}

	.gallery-columns-1 .gallery-item {
		margin-right: 0;
		width: 100%;
	}

	.entry-title {
		font-size: 32px;
		font-weight: normal;
	}

	.comment-author {
		margin-right: 30px;
	}

	.comment-author .avatar {
		height: auto;
		max-width: 100%;
	}

	.comment-metadata,
	.comment-content,
	.comment-list .reply {
		width: 70%;
		width: -webkit-calc(100% - 104px);
		width:         calc(100% - 104px);
	}

	.comment-form input[type="text"],
	.comment-form input[type="email"],
	.comment-form input[type="url"] {
		width: -webkit-calc(100% - 120px);
		width:         calc(100% - 120px);
	}

	.comment-form textarea {
		height: 80px; /* Smaller field for mobile. */
	}

}

/* Mobile devices */
@media (max-width: 359px) {

	.footer-advert img {
		max-width: 300px !important;
		height: auto;
	}

	.site-main {
		width: 100%;
	}

	.site-header {
		padding: 0 15px;
	}

	img.size-full,
	img.size-large,
	img.wp-post-image {
		height: auto;
		max-width: 100%;
	}

	#primary, .site-main {
		width: 100%;
	}

	#secondary {
		width: 100%;
	}
	
	.paging-navigation {
		margin-bottom: 50px;
	}
	
	/* Flexible widget areas - number of widgets per row (1, 2, 3 or 4) changes depending on number of widgets used */
	.flexible-widget-area .widget {
		margin: 0 0 30px 0;
		float: left;
		width: 100%;
		padding: 0;
	}
	
	.flexible-widget-area.widget-count-1 .widget {
		padding: 0;
	}
	
	/* Two per row */
	.flexible-widget-area.per-row-2 .widget {
		width: 100%;
	}
	
	.flexible-widget-area.per-row-2 .widget:nth-of-type(2n+1) {
		clear: left;
		padding-left: 0;
	}
	
	.flexible-widget-area.per-row-2 .widget:nth-of-type(2n) {
		padding-right: 0;
	}
	
	/* Three per row */
	.flexible-widget-area.per-row-3 .widget {
		width: 100%;
	}
	
	.flexible-widget-area.per-row-3 .widget:nth-of-type(3n+1) {
		clear: left;
		padding-left: 0;
	}
	
	.flexible-widget-area.per-row-3 .widget:nth-of-type(3n) {
		padding-right: 0;
	}
	
	/* Four per row */
	.flexible-widget-area.per-row-4 .widget {
		width: 100%;
	}
	
	.flexible-widget-area.per-row-4 .widget:nth-of-type(4n+1) {
		clear: left;
		padding-left: 0;
	}
	
	.flexible-widget-area.per-row-4 .widget:nth-of-type(4n) {
		padding-right: 0;
	}

	.gallery {
		margin-left: 0;
	}

	.gallery .gallery-item,
	.gallery-columns-2.gallery-size-thumbnail .gallery-item {
		max-width: none;
		width: 49%;
		width: -webkit-calc(50% - 4px);
		width:         calc(50% - 4px);
	}

	.gallery-columns-1.gallery-size-medium,
	.gallery-columns-1.gallery-size-thumbnail,
	.gallery-columns-2.gallery-size-thumbnail,
	.gallery-columns-3.gallery-size-thumbnail {
		display: block;
	}

	.gallery-columns-1 .gallery-item,
	.gallery-columns-1.gallery-size-medium .gallery-item,
	.gallery-columns-1.gallery-size-thumbnail .gallery-item {
		text-align: center;
		width: 98%;
		width: -webkit-calc(100% - 4px);
		width:         calc(100% - 4px);
	}

	.gallery-columns-3 .gallery-item:nth-of-type(3n),
	.gallery-columns-5 .gallery-item:nth-of-type(5n),
	.gallery-columns-7 .gallery-item:nth-of-type(7n),
	.gallery-columns-9 .gallery-item:nth-of-type(9n) {
		margin-right: 4px;
	}

	.gallery br {
		display: none;
	}

	.gallery .gallery-item:nth-of-type(even) {
		margin-right: 0;
	}

	/* Comments */
	.comment-author {
		margin: 0 0 5px;
		max-width: 100%;
	}

	.comment-author .avatar {
		display: inline;
		margin: 0 5px 0 0;
		max-width: 20px;
	}

	.comment-metadata,
	.comment-content,
	.comment-list .reply {
		width: 100%;
	}
}


/**
 * 10.0 Print
 * ----------------------------------------------------------------------------
 */

/* Retina-specific styles. */
@media print,
	(-o-min-device-pixel-ratio: 5/4),
	(-webkit-min-device-pixel-ratio: 1.25),
	(min-resolution: 120dpi) {

}

@media print {

	body {
		background: none !important;
		color: #444444;
		font-size: 10pt;
	}

	footer a[rel="bookmark"]:link:after,
	footer a[rel="bookmark"]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}

	.site {
		max-width: 98%;
	}

	.site-header {
		background-image: none !important;
	}

	.site-header .home-link {
		max-width: none;
		min-height: 0;
	}

	.site-title {
		color: #444444;
		font-size: 21pt;
	}

	.site-description {
		font-size: 10pt;
	}

	.author-avatar,
	.site-footer,
	.comment-respond,
	.comments-area .comment-edit-link,
	.comments-area .reply,
	.comments-link,
	.entry-meta .edit-link,
	.page-links,
	.site-content nav,
	.widget-area,
	.main-navigation,
	.navbar,
	.more-link {
		display: none;
	}

	.entry-header,
	.entry-content,
	.entry-summary,
	.entry-meta {
		margin: 0;
		width: 100%;
	}

	.page-title,
	.entry-title {
		font-size: 32pt;
	}

	.entry-meta,
	.entry-meta a {
		color: #89b659;
		font-size: 10pt;
	}

	.entry-content img.alignleft,
	.entry-content .wp-caption.alignleft {
		margin-left: 0;
	}

	.entry-content img.alignright,
	.entry-content .wp-caption.alignright {
		margin-right: 0;
	}

	.format-image .entry-content .size-full {
		margin: 0;
	}

	/* Remove colors from post formats */
	.hentry {
		background-color: #fff;
	}

	/* Comments */
	.comments-area > li.comment {
		background: none;
		position: relative;
		width: auto;
	}

	.comment-metadata {
		float: none;
	}

	.comment-author .fn,
	.comment-reply-link,
	.comment-reply-login {
		color: #eb727b;
	}
}