/*
Theme Name: Smash Balloon
Theme URI: https://smashballoon.com
Author: Smash Balloon
Description: Smash Balloon
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a,
a:active,
a:hover,
a:focus {
	outline: none !important;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ddd;
	border: 0;
	height: 1px;
	margin: 25px 0;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
    line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
	padding: 8px 12px;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #666;
	background-color: #ddd;
	/*background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;*/
	border: none;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	/*box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);*/
}
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
    cursor: default;
}
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #fff;
	background-color: #e89a2e;
}
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	/*border: none;*/
}
li.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like */
	/*border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);*/
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #444;
}
body.custom-font-enabled {
	font-family: "Open Sans", Helvetica, Arial, sans-serif;
}
a {
	outline: none;
	color: #e34f0e;
}
a:hover {
	color: #222;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:hover,
.main-navigation .assistive-text:active,
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	background-color: #fff;
}
.site-content {
	float: left;
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
	margin-top: 60px;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}
.site-header h1 {
	font-size: 24px;
	font-size: 1.714285714rem;
	line-height: 1.285714286;
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	text-align: center;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 14px;
	/*font-size: 0.857142857rem;*/
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover {
	color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	/*-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;*/
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	width: 100%;

	margin-top: 24px;

	padding: 10px 0;
	background: #e34f0e;
	color: #fff;
}
footer[role="contentinfo"] a {
	color: #fff;
	color: rgba(255,255,255,0.8);
}
footer[role="contentinfo"] a:hover {
	color: #111;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 20px;
	font-size: 1.428571429rem;
	line-height: 1.2;
	font-weight: normal;
}
.entry-header .entry-title a {
	text-decoration: none;
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 24px;
	line-height: 1.6;
}
.entry-content h3,
.comment-content h3 {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.846153846;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
	margin-bottom: 10px;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 19px;
}
.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 0;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter {
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
	line-height: 1.5;
}
.site-content article {
	float: left;
	clear: both;
	width: 100%;
	/*border-bottom: 4px double #ededed;*/
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
	word-wrap: break-word;
	/*-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;*/
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	padding-bottom: 22px;
	padding-bottom: 1.571428571rem;
	border-bottom: 1px solid #ededed;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area li.bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}


/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Minimum width of 600 pixels. */
@media screen and (min-width: 700px) {
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		width: 100%;
		overflow: hidden;
	}
	.site .inner{
		max-width: 960px;
		margin: 0 auto;
	}
	.site-content {
		width: 69.104167%;
	}
	body.template-front-page .site-content,
	body.single-attachment .site-content,
	body.full-width .site-content, .site-content.full-width  {
		width: 100%;
	}
	.widget-area {
		float: right;
		width: 25.041666667%;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
		margin-bottom: 0;
	}
	.main-navigation ul.nav-menu,
	.main-navigation div.nav-menu > ul {
		/*border-bottom: 1px solid #ededed;
		border-top: 1px solid #ededed;*/
		display: inline-block !important;
		text-align: left;
		width: 100%;
		color: #fff;
	}
	.main-navigation {
		/*background: #e34f0e;*/
		background: #282828;
		border-bottom: 1px solid;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
		text-align: left;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		padding-left: 25px;
		padding-right: 25px;
		margin-left: -4px;
		border-bottom: 0;
		color: #fff;
		line-height: 3.692307692;
		/*text-transform: uppercase;*/
		white-space: nowrap;
	}
	.main-navigation li a:hover {
		color: #fff;
		background: #e89a2e;
	}
	.main-navigation li {
		margin: 0 0 0 0;
		margin: 0;
		position: relative;
	}
	.main-navigation li ul {
		display: none;
		margin: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 1;
	}
	.main-navigation li ul ul {
		top: 0;
		left: 100%;
	}
	.main-navigation ul li:hover > ul {
		border-left: 0;
		display: block;
		background: #fff;
	    box-shadow: 0 0 10px 0 rgba(0,0,0,0.1);
	}
	.main-navigation li ul li a {
		background: #e34f0e;
		display: block;
		font-size: 13px;
		line-height: 2.181818182;
		padding: 5px 15px;
		width: 180px;
		white-space: normal;
	}
	.main-navigation li ul li a:hover {
		background: #e89a2e;
		color: #fff;
	}
	.main-navigation .fa-caret-down{
		display: none;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
		/*background: #e89a2e;*/
		background: #444;
		color: #fff;
		font-weight: bold;
	}
	.menu-toggle {
		display: none;
	}
	.entry-header .entry-title {
		font-size: 22px;
		font-size: 1.571428571rem;
	}
	#respond form input[type="text"] {
		width: 46.333333333%;
	}
	#respond form textarea.blog-textarea {
		width: 79.666666667%;
	}
	.template-front-page .site-content,
	.template-front-page article {
		overflow: hidden;
	}
	.template-front-page.has-post-thumbnail article {
		float: left;
		width: 47.916666667%;
	}
	.entry-page-image {
		float: right;
		margin-bottom: 0;
		width: 47.916666667%;
	}
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: 51.875%;
		margin-bottom: 24px;
		margin-bottom: 1.714285714rem;
	}
	.template-front-page .widget-area .widget:nth-child(odd) {
		clear: right;
	}
	.template-front-page .widget-area .widget:nth-child(even),
	.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
		float: right;
		width: 39.0625%;
		margin: 0 0 24px;
		margin: 0 0 1.714285714rem;
	}
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		width: auto;
	}
	.commentlist .children {
		margin-left: 48px;
		margin-left: 3.428571429rem;
	}
	
}


/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}
	.singular .entry-header .entry-meta {
		position: static;
	}
	.singular .site-content,
	.singular .entry-header,
	.singular .entry-content,
	.singular footer.entry-meta,
	.singular .comments-title {
		margin: 0;
		width: 100%;
	}
	.entry-header .entry-title,
	.entry-title,
	.singular .entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}



.actions{
	overflow: hidden;
	width: 450px;
	margin: 0 auto;
}
.screenshots .actions{
	margin-bottom: -56px;
}

/* BUTTON */
.btn, input.btn{
	display: block;
	float: left;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	border: none;

	margin: 0 15px 15px 0;
	padding: 20px 30px;
	color: #fff;
	text-align: center;

	background: #edb72f;

	/*text-shadow: 0 -1px 0 rgba(0,0,0,0.2);*/

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.btn.disabled{
	font-size: 14px;
	background: #aaa;
	padding: 15px 30px 14px 30px;
}
.btn:hover, .btn:focus,
input.btn:hover, input.btn:focus{
	color: #fff;
	background: #e89a2e;
}
.btn.disabled:hover, .btn.disabled:focus{
	background: #666;
}

.btn span{
	display: block;
	font-size: 14px;
	font-weight: normal;
	margin-top: -4px;
}
.btn.download{
	padding-left: 60px;

	background: #edb72f url('img/download-icon.png') no-repeat 8% 50%;
}
.btn.download:hover, .btn.download:focus{
	background: #ed942f url('img/download-icon.png') no-repeat 8% 50%;
}
.btn.big{
	background: #e34f0e;
	font-size: 26px;
	padding-top: 12px;
	padding-top: 10px;
	margin: 0 5px;
}
.btn.big:hover,
.btn.big:focus{
	background: #cf3100;
}

.btn.big.light{
	background: #edb72f;
}
.btn.big.light:hover, .btn.big.light:focus{
	background: #e89a2e;
}

.slim .btn.big{
	font-size: 18px;
	padding-top: 6px;
	padding-bottom: 10px;
}
.slim .btn span {
	font-size: 13px;
}

#esu_err{
	display: none !important;
}
.hide{
	display: none;
}

.entry-content form p{
	margin-bottom: 0;
}

.btn-wrap{
	width: 250px;
	float: right;
	margin: 0 15px 15px 0;
	color: #333;
	text-shadow: 0 1px 0 #fff;
}
.entry-content .btn-wrap h3{
	margin: 0 0 5px 0;
	text-align: center;
	width: 100%;
}
.btn-wrap .btn{
	width: 96%;
	font-size: 15px;
	padding: 3px 2%;
	margin-bottom: 5px;

	background: #edb72f;
}
.btn-wrap input.btn{
	width: 81%;
	padding-top: 15px;
	padding-bottom: 15px;
}
.btn-wrap .btn:hover, .btn-wrap .btn:focus{
	color: #fff;
	background: #e89a2e;
}

.intro{
	float: left;
	margin: -10px 0 5px 0;
}
.intro h1{
	margin: 0 0 10px 0;
	font-size: 2.2em;
}
.notice{
	width: 25%;
	height: 50px;
	float: right;
	margin: 10px 0 0 0;
	padding: 10px 0 0 60px;
	background: url('img/wordpress-logo-small.png?1') no-repeat top left;
}
.notice img{
	float: left;
}
.notice h3{
	margin: -12px 0 5px 0;
	font-size: 14px;
	font-weight: 400;
    line-height: 1.3;
}
.notice p{
	font-size: 12px;
	margin-bottom: 10px;
}
.notice h3 span{
	font-size: 14px;
}
.floatright{
	float: right;
}
.rightcol{
	float: right;
	width: 50%;
}

.entry-content .leftcol{
	float: left;
	width: 45%;
}
.entry-content .leftcol h3{
	margin-bottom: 10px;
}
.entry-content .rightcol h3{
	margin: 0 0 10px 0;
}
.entry-content h3{
	margin-bottom: 10px;
}
.entry-content h5{
	margin-top: 6px;
	margin-bottom: 6px;
}

.entry-content li{
	line-height: 1.5;
	padding: 5px 0;
}
.entry-content iframe{
	margin-bottom: 10px;
}

.bottom-line{
	border-bottom: 1px solid #ddd;
	padding-bottom: 20px;
	margin-bottom: 0;
}

@media all and (max-width: 600px){
	.entry-content .leftcol, .entry-content .rightcol{
		float: left;
		width: 100%;
	}
}


.cff-wp-pricing{
	position: relative;
	width: 944px;
	height: 567px;
	background: url('img/cff-wp-pricing.jpg') no-repeat;
}
.cff-standalone-pricing{
	position: relative;
	float: left;
	width: 348px;
	height: 403px;
	margin-right: 30px;
	background: url('img/standalone-price-box.png') no-repeat;
}
.cff-wp-pricing form, .cff-standalone-pricing form{
	position: absolute;
	bottom: 85px;
}
.cff-standalone-pricing form{
	bottom: 50px;
	left: 112px;
}
.cff-wp-pricing form.personal{
	right: 90px;
	bottom: 115px;
}
.cff-wp-pricing form.developer{
	left: 410px;
}
.cff-wp-pricing form.business{
	left: 93px;
}

.cff-wp-pricing .price, .cff-standalone-pricing .price{
	position: absolute;
	top: 163px;
	font-size: 32px;
	font-weight: bold;
	color: #fff;
}
.cff-standalone-pricing .price{
	top: 73px;
	left: 127px;
}
.cff-wp-pricing .price span, .cff-standalone-pricing .price span{
	margin-right: 5px;
	font-size: 20px;
	font-weight: normal;
	text-decoration:line-through;
}
.cff-wp-pricing .price.personal{
	right: 130px;
}
.cff-wp-pricing .price.developer{
	left: 425px;
}
.cff-wp-pricing .price.business{
	left: 110px;
}

h1.big{
	margin-top: 0;
	margin-bottom: 35px;
	text-align: center;
	font-size: 38px;
}

.highlight{
	background: #edb72f;
	padding: 0 20px;
	font-weight: bold;
}

/* Update notifications signup form */
.sml_subscribe .sml_thankyou{
	width: 100%;
	margin-bottom: 20px;
}
.sml_subscribe p{
	float: left;
	margin-right: 15px;
}
.sml_subscribe label{
	margin-right: 5px;
}

.floatleft{
	float: left;
}

.error p, .error h4{
	display: block;
	width: 100%;
	float: left;
	clear: both;
}
#cff .error a{
	display: inline;
	float: none;
	clear: none;
}


.wpcf7-textarea{
	width: 100%;
}



/*NEW HOME PAGE*/
.done{
	color: #999;
}
.shaded-bg, .white-bg{
	width: 100%;
	float: left;
	padding: 20px 0;
}
.shaded-bg{
	background: #f4edea;
}
.shaded-bg h2{
	margin-top: 0;
}
.banner{
	width: 100%;
	padding: 32px 0 23px 0;
	float: left;
	text-align: center;
	background: #282828;
	margin: -24px 0;
}
.banner img{
	margin-left: -40px;
	padding: 10px 0;
}
.screenshots{
	float: left;
	width: 100%;
	padding: 10px 0;
	margin-bottom: 80px;
	background: #f4edea;
	text-align: center;
}

.features-page .features{
	padding: 40px 0 20px 0;
}
.features{
	width: 100%;
	float: left;
	padding: 20px 0 0 0;
}
.features .col{
	width: 30%;
	float: left;
	margin: 0;
	margin-left: 5%;
}
.features .col.first{
	margin-left: 0;
}
.features h3{
	margin-top: 10px;
	margin-bottom: 15px;
}
.features .col h3 span{
	display: block;
	float: left;
	background: url('img/sprite.png') no-repeat;
	width: 33px;
	height: 34px;
	margin: -3px 13px 0 0;
}
.features .customizable h3 span{
	background-position: -36px 0;
	width: 41px;
	margin-right: 10px;
}
.features .seo h3 span{
	background-position: -81px -4px;
	width: 41px;
	height: 30px;
	margin-top: 1px;
	margin-right: 15px;
}
.features .col p{
	margin-bottom: 15px;
}

.features p{
	font-size: 15px;
}
.features li, .features .col p{
	font-size: 13px;
}
.features li{
	margin-left: 18px;
}


/* WordPress plugin page */
.wpplugin-page .feature{
	float: left;
	width: 94%;
	padding: 0 3% 10px 3%;
	clear: both;
	background: #f4edea;
	margin-top: 10px;
	border-radius: 10px;
}
.wpplugin-page .feature img{
	max-width: 300px;
	width: auto;
	margin: -30px 0 20px 30px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.wpplugin-page .feature img,
.wpplugin-page .feature iframe{
	background: #fff;
	border: 1px solid #ddd;
	padding: 10px;
}
.clearright{
	clear: right;
}




.support, .reviews, .video, .home .wordpress-plugin{
	float: left;
	width: 100%;
	clear: both;
	margin: 20px 0 0 0;
	padding: 20px 0;
	background: #f4edea;
}
.reviews{
	background: #fff;
	padding-top: 60px;
}
h2{
	font-size: 24px;
}
.support h2 span,
.reviews h2 span,
.video h2 span,
.questions h2 span,
.home .wordpress-plugin h2 span{
	display: block;
	float: left;
	background: url('img/sprite.png') no-repeat -126px 0;
	width: 33px;
	height: 42px;
	margin: -1px 15px 0 0;
}
.support .testimonial{
	float: left;
	clear: none;
	width: 47.2%;
	margin: 0 0 12px 1.5%;
	padding: 1%;
	background: #fff;

	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
	-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
}
.support .testimonial.first,
.support.white-bg .testimonial.first{
	margin-left: 0;
}
.support.white-bg .testimonial.first{
	margin-right: 9px;
}

.actions.bottom{
	position: relative;
	bottom: -50px;
}
.twitter-tweet{
	width: 49% !important;
	height: 220px;
	float: right;
	margin-top: 0 !important;
	background: #fff;
}
.first .twitter-tweet{
	float: left;
}
.tweet.first{
	margin-left: 8px;
}
/* Pricing page WP reviews */
.support .all-reviews{
	float: left;
	padding-left: 20px;
}


.guarantee{
	text-align: center;
	padding-bottom: 30px;
}
.guarantee h3{
	margin: 0;
	font-size: 26px;
	font-weight: normal;
}
.guarantee p{
	margin: -10px 0 0 0;
	font-size: 18px;
}

.pricing{
	position: relative;
	float: left;
	width: 99%;
	margin: 0 1% 0 0;
	background: #ddd3cf;
	padding: 8px;

	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
}
.instagram-pricing .pricing section{
	width: 32.6%;
	min-height: 380px;
	padding-bottom: 0;
}

.pricing section{
	float: left;
	clear: none;
	position: relative;
	width: 24.2%;
	min-height: 450px;
	margin-left: 1%;
	padding-bottom: 150px;
	background: #fff;
	text-align: center;
	color: #776963;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 

	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
.pricing section:first-child{
	margin-left: 0;
}

.pricing header{
	margin: 15px 0 0 0;
	padding: 15px 0 18px 0;
	background: #fffaef;
	border-top: 1px solid #ddd3cf;
	color:  #66501a;
}
.pricing .one header,
.pricing .two header,
.pricing .three header{
	padding: 27px 0 29px 0;
}
.pricing .two header{
	background: #fff4da;
}
.pricing .three header{
	background: #fdecbf;
}
.pricing .four header{
	background: #ffe8af;
}
.pricing header *{
	margin: 0;
	padding: 0;
}
.pricing header h4{
	font-size: 18px;
	font-weight: normal;
}

.pricing .info p{
	padding: 8px;
	margin: 0;
	border-top: 1px solid #ddd3cf;
	font-size: 13px;
	color: #776963;
	line-height: 1.5;
}
.pricing .four .option{
	padding: 26px 0;
	margin-bottom: 23px;
}
.pricing .option input{
	top: 2px;
	position: relative;
}

.popular{
	position: absolute;
	top: 3px;
	right: -4px;
	font-size: 12px;
	color: #fff;
	line-height: 31px;

	background: url('img/sprite.png') no-repeat -47px -46px;
	width: 112px;
	height: 31px;
}
p.note{
	width: 55%;
	float: left;
	margin: 20px 22.5%;
	text-align: center;
	font-size: 11px;
	color: #776963;
	line-height: 1.4;
}
.pricing header .price{
	font-size: 36px;
	line-height: 1.4;
	font-weight: bold;
	margin-top: -4px;
}
.price span{
	font-size: 12px;
	font-weight: normal;
	position: relative;
	top: -8px;
}
.price span.strike{
	font-size: 18px;
	top: -6px;
	text-decoration: line-through;
}
.pricing header .small{
	font-size: 12px;
	padding-top: 3px;
}

.pricing .bottom{
	width: 100%;
	position: absolute;
	bottom: 20px;
}
.edd_download_purchase_form{
	margin-top: 20px;
}

.option{
	text-align: center;
	padding: 15px 0;
	background: #f4edea;
	border-top: 1px solid #ddd3cf;
	border-bottom: 1px solid #ddd3cf;
	font-size: 13px;
}

.support.white-bg{
	padding-top: 10px;
	padding-bottom: 40px;
	background: #fff;
}
.support.white-bg .testimonial {
	border: 1px solid #ddd;

	width: 49%;
	margin: 0 0 10px 1%;
	padding: 1% 0.8%;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.support.white-bg .testimonial:first-child {
	margin-left: 0;
}
.pricing-page .questions{
	padding: 45px 0 80px 0;
	margin-bottom: -120px;
}
.no-top{
	margin-top: 24px;
}

.pricing-page .deal{
	width: 95%;
	background: #e89a2e;
	color: #fff;
	text-align: center;
	padding: 6px 2.5% 6px 2.5%;
	margin: -7px 0 15px 0;
	line-height: 1.4;
}


/*Sidebar*/
#secondary{
	margin-top: 60px;
}
#secondary .widget_text #cff{
	/*-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;*/
}


.php-btn{
	display: none;
}

.contents{
	background: #eee;
	border-radius: 8px;
	padding: 20px;
	margin: 0 0 10px 0;
}
.contents h4{
	margin-bottom: 10px;
}
.contents li{
	padding: 4px 0;
}


/*** DEMO ***/
.demo-form{
	float: left;
	width: 90%;
	margin-bottom: 15px;
	padding: 25px 5%;
	background: #f4edea;
	font-size: 12px;
  
  	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}
.demo-form h4{
	margin: 0 0 15px 0;
}
.demo-form .row{
	width: 100%;
	float: left;
	margin-bottom: 15px;
}
.demo-form label{
	display: block;
	float: left;
	padding-top: 7px;
}
.demo-form input{
	max-width: 95% !important;
	margin-left: -3px;
}
.demo-form input#id{
	margin: 5px 0;
}
.demo-form input#token{
	margin-bottom: 5px;
}
.demo-form input[type=submit]{
	float: left;
	background: #edb72f;
	color: #fff;
	font-size: 12px;
}
.demo-form input[type=submit]:hover{
	background: #e34f0e;
}
.demo-form input[type=radio],
.demo-form input[type=checkbox]{
	margin-top: 8px;
}
.demo-form input[type=radio]{
	position: relative;
	top: 2px;
}
.demo-form input[type=checkbox]{
	margin-left: 5px;
}
.demo-form .bottom{
	padding-top: 10px;
	margin-bottom: 0;
}
.demo-form .bottom p{
	width: 100%;
	float: left;
	font-size: 11px;
	margin-top: 15px;
}
.demo-form .row.types div{
	width: 100%;
	float: left;
	clear: both;
	margin-top: 3px;
}
.demo-form .row.types input[type=checkbox] {
	float: left;
	margin: 6px 5px 0 0;
}
.btn.big.buy{
	padding: 7px 30px 17px;
}
.btn.big.buy span{
	line-height: 1.1;
}
.layout{
	width: 100%;
	clear: both;
}
.layout input{
	margin-left: 0;
}
#cff p{
	font-size: 13px;
}

#secondary .btn.big{
	width: 90%;
	padding: 12px 5% 15px;
	margin: 0;
	/*font-size: 18px;*/
}
#secondary .btn.big span{
	margin-top: 10px;
	/*font-size: 13px;*/
}


.docs .entry-content img{
	border: 1px solid #ddd;
}

.screenshots{
	position: relative;
}

.play-video{
	display: block;
	position: absolute;
	top: 30%;
	left: 50%;
	margin-left: -40px;

	width: 80px;
	height: 80px;
	background: #000;
	background: rgba(0,0,0,0.5);
	border-radius: 100px;
	text-indent: -9999px;
}
.play-video:hover,
.play-video:focus{
	background: #edb72f;
	border: 3px solid rgba(255,255,255,0.7);
	margin-left: -43px;
	margin-top: -3px;

	box-shadow: 0 0 60px rgba(0,0,0,0.3);
	-moz-box-shadow: 0 0 60px rgba(0,0,0,0.3);
	-webkit-box-shadow: 0 0 60px rgba(0,0,0,0.3);
}
.play-video img{
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -13px;
	margin-top: -21px;
}
.youtube-video{
	/*position: absolute;*/
	top: 0;
	left: 0;
	width: 100%;

	border: 1px solid #eee;
}
input.sml_submitbtn{
	font-size: 13px;
	padding: 9px 20px;
}
.payment-types{
	width: 100%;
	float: left;
	clear: both;
	text-align: center;
}


/* FAQs */
.accord{
	position: relative;
	padding: 0 0 20px 0;
	
}
.accord p{
	position: relative;
	display: block;
	margin: 20px 0;
	padding: 0;
}
.accord h3{
	position: relative;
	background: #ddd;
	padding: 8px 2% 10px 2%;
	width: 96%;
	margin: 0;
	cursor: pointer;

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}
.accord h3.on{
	background: #e89a2e;
	color: #fff;
}
.accord h3.on:before{
	color: #fff;
}

.accord h3:before{
	content: '+';
	font-size: 30px;
	font-weight: bold;
	line-height: 30px;
	position: relative;
	left: 0;
	top: 4px;
	margin-right: 10px;
	color: #bbb;
}
.accord.open h3:before{
	content: '-';
	top: 2px;
	left: 2px;
	margin-right: 17px;
}

/* Access Token Form */
#getToken{
	margin-bottom: 20px;
}
#getToken label{
	margin-right: 5px;
}
#getToken input{
	margin-right: 15px;
}
#getToken #id{
	width: 130px;
}
#getToken #secret{
	width: 240px;
}
.success{
	background: #BCE0C2;
	padding: 10px;
	border: 1px solid #6AB074;
	color: #214F28;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.failure{
	background: #F7E6E6;
	padding: 10px;
	border: 1px solid #BA7B7B;
	color: #592626;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.yellow-notice{
	background: #FFEDB5;
	padding: 10px;
	border: 1px solid #e34f0e;
	color: #e34f0e;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* FOOTER */
footer .site-info{
	overflow: hidden;
	margin-bottom: 10px;
}
footer .copyright{
	float: left;
	padding-right: 17px;
	border-right: 1px solid #fff;
	border-right: 1px solid rgba(255,255,255,0.3);
}
footer a{
	text-decoration: none;
}
.menu-footer-container{
	float: left;
	margin: 0 0 0 15px;
}
.menu-footer-container li{
	float: left;
	margin-right: 15px;
}
nav .inner, footer .inner{
	position: relative;
}
.twitter-follow-button{
	margin-right: 10px;
}

/* Footer share button */
.social-share-button{
	position: relative;
	z-index: 1;
    padding: 2px 12px;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-weight: bold;
    border-radius: 3px;
    display: inline-block;
    font-size: 13px;
}
.social-share-button:hover,
.social-share-button:focus{
	background: rgba(255,255,255,0.2);
	color: #fff !important;
}
#footer-share-links{
	opacity: 0;
	position: absolute;
	z-index: 0;
	top: 18px;
	left: 0;

    display: inline-block;
    padding: 5px;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    height: 20px;
}
#footer-share-links.cff-show{
	opacity: 1;
	left: 152px;
	transition: all 0.3s ease;
}


#edd_cc_address #edd-card-address-wrap,
#edd_cc_address #edd-card-address-2-wrap,
#edd_cc_address #edd-card-city-wrap,
#edd_cc_address #edd-card-zip-wrap {
    /*display: none !important;*/
}

.edd-submit, #edd-purchase-button, input[type=submit].edd-submit {
	border: none;
}
#edd-purchase-button{
	float: left;
	font-weight: bold;
}
#edd_checkout_form_wrap p.edd-cancel{
	float: left;
	clear: none;
	margin: 5px 0 0 15px;
	font-size: 12px;
}

#siteseal{
	float: right;
	margin-top: -50px;
}
.support-success{

	background: #BCE0C2;
	padding: 15px 25px;
	border: 1px solid #6AB074;
	color: #214F28;
	border-radius: 8px;

}
.support-success h3{
	line-height: 2.5;
	margin: 0;
	padding: 0;
}
.entry-content .support-success p{
	margin-bottom: 10px;
}


/*Interior menu*/
.site-content .sub-menu{
	padding: 4px 10px;
}
.menu .no-link > a{
	color: #444;
	font-weight: bold;
}



/* WordPress.org reviews */
.reviews h2 span{
	background-position: 0 -40px;
}

.review{
	padding: 20px 0;
	/*border-bottom: 3px dashed #eee;*/
}

/* Avatar */
.reviewer-avatar {
	float: left;
	width: 44px;
}
.reviewer-avatar a{
	display: block;
	float: left;
	width: 44px;
}
.reviewer-avatar img {
vertical-align: bottom;
margin-right: 8px;
margin-top: 4px;
border-radius: 3px;
width: 36px;
height: 36px;
}

/* Header */
.review-head{
	float: left;
	width: 100%;
}
div.star-holder {
position: relative;
height: 17px;
width: 92px;
}
.review-stars {
float: left;
}
div.star-holder .star-rating {
background: url('img/5-stars.png') repeat-x top left;
height: 17px;
float: left;
text-indent: 100%;
overflow: hidden;
white-space: nowrap;
margin: 3px 0 0 2px;
}
.review-title {
float: left;
margin-left: 0.75em;
font-weight: bold;
font-size: 1.1em;
}

/* Info */
.reviewer-info {
float: left;
}
.review-body {
margin-bottom: 0;
clear: both;
width: 100%;
}
.review-body p{
	margin: 0;
	padding: 5px 0;
	font-size: 13px;
}
.reviews-comment-link{
	display: none;
}
.reviewer {
display: -moz-inline-stack;
display: inline-block;
vertical-align: top;
zoom: 1;
*display: inline;
font-size: 12px;
}


.video{
	background: #f4edea;
	padding-bottom: 60px;
}
.video h2 span{
	background-position: -165px 0;
}

.questions h2 span{
	background-position: -165px -48px;
}

.video,
.reviews,
.support{
	/*border-top: 3px dashed #e0e0e0;*/
	/*border-top: 1px solid #f4edea;*/
	margin-top: 0;
}
.support{
	/*border-top: 1px solid #ebe3df;*/
}
.video{
	/*border-top: 1px solid #f1ebe8;*/
}


/* WordPress plugin CFF page section */
.home .wordpress-plugin{
	padding: 10px 0 40px 0;
	background: #fff;
}
.home .wordpress-plugin ul{
	float: left;
}
.home .wordpress-plugin li{
	padding: 3px 0;
	line-height: 1.3;
}
.home .wordpress-plugin .slim{
	float: right;
	margin: 45px 40px 0 0;
}
.home .wordpress-plugin h2 span{
	background-position: -203px -53px;
}
#reviews .show-all{
	width: 100%;
	display: block;
	padding: 10px 0;
	margin: 20px 0 15px 0;

	text-align: center;
	color: #333;
	background: #f4edea;
	text-decoration: none;
	font-weight: bold;
}
#reviews .show-all:hover,
#reviews .show-all:focus{
	background: #edb72f;
	color: #fff;
}
#reviews .show-all span{
	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: top;
	zoom: 1;
	*display: inline;

	background: url('img/sprite.png') no-repeat -244px -88px;
	width: 9px;
	height: 7px;
	margin: 9px 0 0 9px;
}
#reviews .show-all:hover span,
#reviews .show-all:focus span{
	background-position: -261px -88px;
}
#reviews.open .show-all span{
	background-position: -277px -87px;
}
#reviews.open .show-all:hover span,
#reviews.open .show-all:focus span{
	background-position: -294px -87px;
}

/* Gallery page 2014 */
.soliloquy-thumbnails-container .soliloquy-controls{
	/*display: none !important;*/
}
.soliloquy-thumbnails-container{
	margin-top: 20px !important;
}
.soliloquy-thumbnails-container .soliloquy-item {
	opacity: 1 !important;
}
.page-template-page-gallery-php .wrapper{
	background: #f4edea;
}
.gallery .inner{
	width:988px;
	max-width: 988px;
}
.gallery img{
	background: #fff;
	border: 1px solid #ddd;
	padding: 10px;
	margin: 5px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box; 
}
.gallery .soliloquy-thumbnails-container img:hover{
	background: #e34f0e;
	border: 1px solid #e34f0e;
}
.gallery-page-new article{
	margin-bottom: 0;
}
.page-template-page-gallery-php footer{
	margin-top: 0;
}
.page-template-page-gallery-php .actions{
	margin-bottom: 25px;
}


.home-int-nav{
	display: none;
	position: fixed;
	z-index: 9999;
	top: 0;
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
	background: #e89a2e;
	overflow: hidden;
}
.home-int-nav .inner{
	position: relative;
}
.home-int-nav a{
	display: block;
	float: left;
	padding: 5px 12px 6px 12px;
	color: #fff;
	text-decoration: none;
	font-size: 13px;
}
.home-int-nav a:hover,
.home-int-nav a:focus{
	color: #282828;
}
.home-int-nav a.first{
	margin-left: 50px;
}

a.to-top{
	display: block;
	position: absolute;
	background: url('img/sprite.png') no-repeat -203px -5px;
	width: 39px;
	height: 42px;
	text-indent: -9999px;
	padding: 0;
	margin: 0;
	top: 0;
	left: 0;
	height: 33px;
	overflow: hidden;
}
a.to-top:hover,
a.to-top:focus{
	left: -11px;
	background-position: -249px -17px;
	width: 61px;
}

.user-notice{
	position: absolute;
	top: 0;
	width: 100%;
	background: #e89a2e;
	color: #fff;
	font-size: 12px;
	padding: 5px 0;
	text-align: center;
}
.user-notice .inner{
	max-width: 960px;
	margin: 0 auto;
}

#edd_show_terms{
	font-size: 12px;
	padding: 8px 0;
}
#edd_terms{
	font-size: 12px;
	padding: 0 20px 20px 20px;
	border: 1px solid #eee;
	max-height: 350px;
	overflow: auto;
}
#edd_terms h3{
	font-size: 14px;
}
#edd_terms h4{
	font-size: 12px;
	margin: 20px 0 10px 0;
}
#edd_terms p{
	margin-bottom: 10px;
}


.edd_form, #loginform, .aff-reg, .guest-register-form, .affiliates-registration{
	padding: 20px;
	background: #f9f9f9;
	border: 1px solid #e9e9e9;
	border-radius: 5px;
	margin: 20px 0 0 0;
	clear: both;
}
.edd_form .required, #loginform .required, .affiliates-registration .required{
	color: #333;
}
.edd_form legend, #loginform legend, .guest-register-form legend{
	padding: 0 0 10px 0;
	font-weight: bold;
}
#edd_login_form label{
	width: 80px;
	display: block;
	float: left;
	line-height: 32px;
}
.edd_form .edd_submit{
	margin: 10px 0;
}
.guest-register-form .form-submit{
	margin-top: 10px;
}
.edd_form .edd-lost-password{
	float: left;
	clear: none;
	margin: 5px 0 0 0;
	font-size: 12px;
}
.entry-content{
	float: left;
	width: 100%;
}
#edd_profile_editor_form legend{
	font-weight: bold;
	padding: 10px 0;
}

/* Hide renewal form */
#edd_sl_renewal_form{
	display: none;
}

.responsive-tabs__list li{
	margin: 0 10px 0 0;
	padding: 10px 20px;
}
code{
	background: #eee;
	padding: 2px;
}


/* Login form */
#loginform{
	float: left;
	width: 96%;
	margin: -24px 0 40px 0;
	border-radius: 0 0 5px 5px;
	padding: 20px 2%;
}
#loginform p,
#loginform .login-username,
#loginform .login-password{
	float: left;
	margin-right: 10px;
}
#loginform .login-remember{
	padding: 5px;
	font-size: 12px;
}
#loginform .login-remember input{
	position: relative;
	top: 2px;
}

/* Affiliate registration form */
.affiliates-registration{
	width: 50%;
}
.affiliates-registration form input[type="text"]{
	width: 97%;
}
.affiliates-registration input[type="submit"]{
	margin: 15px 0 0 0;
}


/* ACCOUNT PAGE */
.site-content.account{
	margin-top: 30px;
}
.account #loginform{
	margin-top: -30px;
}
.small-banner{
	background: #e34f0e;
	color: #fff;
	width: 100%;
	padding: 20px 0;
	font-size: 24px;
	font-weight: bold;
	margin-top: -24px;
}


.edd_sl_license_key_expired{
	position: relative;
}
.tooltip{
	position: absolute;
	bottom: 0;
	left: -100px;
	width: 220px;
	padding: 15px;
	background: #eee;
	border: 1px solid #ddd;
	border-radius: 3px;
	text-align: center;
}

/* Guest registration form */
.guest-register-form label{
	width: 220px;
	float: left;
	line-height: 32px;
}
.guest-register-form .form-required{
	display: none;
}
.guest-register-form .description{
	font-size: 12px;
	padding-left: 5px;
	font-style: italic;
}
.entry-content .guest-register-form form p {
    margin-bottom: 5px;
}


/* Tabs */
.tabcontent .edd_form,
.tabcontent #loginform,
.tabcontent .aff-reg,
.tabcontent .guest-register-form{
	margin-top: 0;
}
.entry-content .responsive-tabs__panel{
	padding: 25px;
	overflow: hidden;

	-moz-border-radius: 0 6px 6px 6px;
	-webkit-border-radius: 0 6px 6px 6px;
	border-radius: 0 6px 6px 6px;
}
.responsive-tabs .responsive-tabs__list {
	padding-bottom: 3px !important;
}
.responsive-tabs .responsive-tabs__list li{
	font-size: 14px;
}


/* Renew license form */
.renew-license .gfield{
	margin-bottom: 0 !important;
}
.gform_wrapper .renew-license .left_label .gfield_label {
	width: 120px;
	line-height: 31px;
}
.gform_wrapper .renew-license .gform_footer.left_label {
	padding: 0;
}
.gform_wrapper .renew-license .gform_footer {
	padding: 0;
	margin: 10px 0;
}
.gform_wrapper .renew-license .gform_title{
	font-size: 14px;
}



/* IE */

.ie .support,
.ie .reviews,
.ie .video{
	float: left;
	width: 100%;
}
.ie .reviewer {
	line-height: 30px;
	padding-left: 8px;
}

.ie .author-avatar {
	float: left;
	margin-top: 8px;
	margin-top: 0.571428571rem;
}
.ie .author-description {
	float: right;
	width: 80%;
}
.ie .site,
.ie #page {
	margin: 0 auto;
	width: 100%;
	overflow: hidden;
}
.ie .site .inner{
	width: 960px;
	max-width: 960px;
	margin: 0 auto;
}
.ie .site-content {
	float: left;
	width: 65.104166667%;
}
.ie body.template-front-page .site-content,
.ie body.single-attachment .site-content,
.ie body.full-width .site-content, .site-content.full-width  {
	width: 100%;
}
.ie .widget-area {
	float: right;
	width: 26.041666667%;
}
.ie .site-header h1,
.ie .site-header h2 {
	text-align: left;
}
.ie .site-header h1 {
	font-size: 26px;
	font-size: 1.857142857rem;
	line-height: 1.846153846;
	margin-bottom: 0;
}
.ie .main-navigation ul.nav-menu,
.ie .main-navigation div.nav-menu > ul {
	/*border-bottom: 1px solid #ededed;
	border-top: 1px solid #ededed;*/
	display: inline-block !important;
	text-align: left;
	width: 100%;
	color: #fff;
}
.ie .main-navigation {
	background: #e34f0e;
}
.ie .main-navigation ul {
	margin: 0;
	text-indent: 0;
}
.ie .main-navigation li a,
.ie .main-navigation li {
	display: inline-block;
	text-decoration: none;
}
.ie .main-navigation li a {
	padding-left: 25px;
	padding-right: 25px;
	margin-left: -4px;
	border-bottom: 0;
	color: #fff;
	line-height: 3.692307692;
	text-transform: uppercase;
	white-space: nowrap;
}
.ie .main-navigation li a:hover {
	color: #fff;
	background: #e89a2e;
}
.ie .main-navigation li {
	margin: 0 0 0 0;
	margin: 0;
	position: relative;
}
.ie .main-navigation li ul {
	display: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	z-index: 1;
}
.ie .main-navigation li ul ul {
	top: 0;
	left: 100%;
}
.ie .main-navigation ul li:hover > ul {
	border-left: 0;
	display: block;
}
.ie .main-navigation li ul li a {
	background: #e34f0e;
	display: block;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	padding: 8px 10px;
	padding: 0.571428571rem 0.714285714rem;
	width: 180px;
	width: 12.85714286rem;
	white-space: normal;
}
.ie .main-navigation li ul li a:hover {
	background: #e89a2e;
	color: #fff;
}
.ie .home .main-navigation li:first-child a,
.ie .main-navigation .current-menu-item > a,
.ie .main-navigation .current-menu-ancestor > a,
.ie .main-navigation .current_page_item > a,
.ie .main-navigation .current_page_ancestor > a {
	background: #e89a2e;
	color: #fff;
	font-weight: bold;
}
.ie .menu-toggle {
	display: none;
}
.ie .entry-header .entry-title {
	font-size: 22px;
	font-size: 1.571428571rem;
}
.ie #respond form input[type="text"] {
	width: 46.333333333%;
}
.ie #respond form textarea.blog-textarea {
	width: 79.666666667%;
}
.ie .template-front-page .site-content,
.ie .template-front-page article {
	overflow: hidden;
}
.ie .template-front-page.has-post-thumbnail article {
	float: left;
	width: 47.916666667%;
}
.ie .entry-page-image {
	float: right;
	margin-bottom: 0;
	width: 47.916666667%;
}
.ie .template-front-page .widget-area .widget,
.ie .template-front-page.two-sidebars .widget-area .front-widgets {
	float: left;
	width: 51.875%;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.ie .template-front-page .widget-area .widget:nth-child(odd) {
	clear: right;
}
.ie .template-front-page .widget-area .widget:nth-child(even),
.ie .template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
	float: right;
	width: 39.0625%;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.ie .template-front-page.two-sidebars .widget,
.ie .template-front-page.two-sidebars .widget:nth-child(even) {
	float: none;
	width: auto;
}
.ie .commentlist .children {
	margin-left: 48px;
	margin-left: 3.428571429rem;
}



/* EXTENSIONS */
.page-template-page-extensions-php .wrapper{
	background: #f4edea;
}

.extensions{
	width: 100%;
	float: left;
	clear: both;

	/*background: #ddd3cf;*/
	/*padding: 1%;*/
	
}

.cff-extension{
    display: block;
    float: left;
    width:23.7%;
    
    padding: 1%;
    margin: 10px 1.3% 0 0;
    

    /*
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 0 5px #eee;*/
    text-decoration: none;

    float: left;
	clear: none;
	position: relative;
	background: #ddd3cf;
	text-align: center;
	color: #776963;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
}
.cff-extension .inside{
	float: left;
	clear: both;
	height: 265px;
	background: #fff;
	padding: 8px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
}

.cff-extension h3,
.cff-extension p{
    padding: 5px 0;
    margin: 0;
}
.cff-extension p{
	padding: 10px 0;
	margin: 0;
	line-height: 1.3;
}
.cff-extension h3{
	background: #fbe7b4;
	border: 1px solid #ddd3cf;
	margin: 0;

	color: #614E1D;
	padding: 30px 0;
	font-size: 24px;
	width: 100%;

	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;

	text-align: center;
}
.cff-extension p.desc{
	height: 100px;
	padding: 10px;
}
.cff-extension img{
	max-width: 100%;
	margin: 10px 0;
}
.cff-extension .cff-activate{
	/*float: right;*/
	background: #eee;
	border: 1px solid #ddd;
	border-radius: 3px;
	padding: 5px 8px;
	margin: 10px 0 0 0;
	float: left;
	/*clear: both;*/
}
.cff-extension label{
	margin: 0 5px;
	position: relative;
	top: -2px;
}
.cff-extension input{
	position: relative;
	top: 1px;
}
.cff-extension .cff-active .cff-activate{
	background: #f7faf1;
	border: 1px solid #7ad03a;
}
.cff-extension .cff-requires{
	font-size: 12px;
	font-style: italic;
	padding-bottom: 15px;
}
.cff-extension .cff-doc{
	/*float: right;*/
	padding: 13px 0;
}

.cff-extension .edd_purchase_submit_wrapper{
	float: left;
}
.edd_price_options{
	font-size: 12px;
}
.edd_price_options *{
	padding: 0;
	margin: 0;
}
.edd_price_options input{
	position: relative;
	top: 2px;
}
.single-download .edd_download_purchase_form .edd_price_options li{
	padding: 3px 0;
}

.extension-details h4{
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.cff-extension .button.sb-btn{
	background: #e34f0e;
	text-decoration: none;
}


.single-download .wrapper{
	background: #f4edea;
}
.single-download #secondary {
	margin-top: 60px;
	background: #fff;
	padding: 20px 15px 5px 15px;
	border: 1px solid #ddd;

	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
}



/* Only show Overview subnav on the Overview page */
#menu-item-52 .sub-menu .current-menu-item a{
	background: #e34f0e;
	font-weight: normal;
}
#menu-item-52 .sub-menu .current-menu-item a:hover,
#menu-item-52 .sub-menu .current-menu-item a:focus{
	background: #e89a2e;
}
.page-template-page-cff-php #menu-item-52 .sub-menu li{
	display: block;
}


/* Affiliate tab */
.account .paypal-notice{
	margin-top: 10px;
	display: none;
}
.account .affiliate-profile .field,
.account .affiliate-stats .from-date,
.account .affiliate-stats .thru-date{
	float: left;
	margin-right: 15px;
}
.account .affiliate-profile .submit,
.account .affiliate-stats .submit{
	float: left;
	margin: 24px 0px 0px 0;
}
.account .affiliate-stats .submit{
	margin: 0;
}
.account .affiliate-stats .submit input{
	margin-right: 10px;
}
.account #affiliate-profile,
.account #setfilters{
	overflow: hidden;
}
.account .accord{
	padding-bottom: 0;
}
.account hr{
	margin: 35px 0px 20px 0;
}
.account .affiliate-graph {
    margin-top: 40px;
}

/* Lost password */
.sb-lost-password{
	font-size: 12px;
	margin: 5px 0 0 10px;
	
	display: -moz-inline-stack;
	display: inline-block;
	vertical-align: top;
	zoom: 1;
	*display: inline;
}


#edd_user_history td {
	line-height: 1.5;
}


/* New home */
.home-new{
	margin-top: 0;
}
.small-banner.home-banner{
	background: #282828;
	padding: 40px 0;
}
.home-banner .inner{
	overflow: hidden;
}
.home-banner .text{
	float: right;
	/*width: 72%;	*/
	width: 75%;
}
.home-banner h1{
	font-size: 48px;
	line-height: 1.2;
	margin-top: 15px;
	font-weight: 100;
}
.home-banner .cta{
	background: #e89a2e;
	color: #fff;
	font-size: 22px;
	font-weight: normal;
	padding: 13px 25px 15px 25px;
	margin: 30px 0;
}
.home-banner .cta:hover,
.home-banner .cta:focus{
	background: #e34f0e;
}
.home-banner .fa{
	/*font-size: 220px;*/
	font-size: 208px;
	color: #444;
	margin-top: 10px;
}
.home-new .balloons{
	margin: -10px 0 0 100px;
}
.home-new .video{
	width: 48%;
	float: left;
	margin-right: 2%;
	border: none;
	background: none;
	padding: 0;
}
.home-new .reviews{
	width: 48%;
	margin-left: 2%;
	float: left;
	clear: none;
	border: none;
	padding: 0;
	background: none;
}
.home-new .twitter-tweet {
	width: 100%;
	min-height: 260px;
	float: left;
}
.home-new h2{
	padding-bottom: 30px;
	font-size: 24px;
	line-height: 1.6;
	padding-top: 10px;
	font-weight: normal;
}

.home-new .text-content,
.home-new .extras{
	float: left;
	width: 100%;
	clear: both;
	margin: 0;
	padding: 50px 0 45px 0;
	background: #f4edea;
}
.home-new .text-content p{
	font-size: 16px;
}
.home-new .extras{
	background: #fbf9f8;
	padding-bottom: 60px;
	border-top: 1px solid #f1ebe8;
}
.home-new .video iframe{
	background: #fff;
	border: 1px solid #eee;

	box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
	-moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
	-webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.14902);
}

/* FOOTER FEED */
footer #cff{
	background: #e66831;
	margin: 10px 0 20px 0;
	padding: 10px 20px;

	-moz-border-radius: 12px;
	-webkit-border-radius: 12px;
	border-radius: 12px;
}
footer #cff:hover{
	background: #e66831;
}
footer #cff .cff-date {
	color: rgba(255,255,255,0.7);
}
footer #cff .cff-item{
	padding: 5px 0;
	clear: none;
	width: 700px;
	border: none !important;
}
footer #cff p{
	margin-top: 0;
}
footer #cff a{
	color: #fff;
}
footer #cff .cff-text a{
	font-weight: bold;
}
footer #cff a:hover,
footer #cff a:focus{
	text-decoration: underline;
}
footer .cff-likebox{
	width: 200px !important;
	background: #ea855a;
	border-radius: 6px;
	margin-right: 20px;
}
footer #cff .cff-viewpost-facebook {
	margin-top: -35px;
}
footer #cff .cff-viewpost-facebook{
	color: #fff;
	color: rgba(255,255,255,0.7);
}
footer #cff .cff-meta-wrap {
	margin: 0;
}
footer .cff-likebox {
	margin-left: -10px;
}
footer #cff .cff-post-text{
	width: 99%;
}

/* Priority Support Page */
.rcp_subscription_fieldset{
	margin-top: 30px !important;
}
.entry-content .rcp_form p{
	margin-bottom: 10px;
}
.rcp_user_fieldset input{
	width: 30%;
}

.license-error{
	font-size: 13px;
}



.screenreader{
    font-size: 0;
    line-height: 0;
    overflow: hidden;
    margin: 0;
    outline: 0;
    border: 0;
    padding: 0;
    width: 1px;
    height: 1px;
    position: absolute;
    top: auto;
    left: -10000px;
    z-index: -10000;
}



@media all and (max-width: 970px){
	footer .cff-likebox{
		width: 25% !important;
		margin-right: 2%;
	}
	footer #cff .cff-item{
		width: 72%;
	}
}

@media all and (max-width: 950px){

	.inner{
		width: 96%;
		padding: 0 2%;
	}

	.pricing section{
		width: 49%;
		margin: 0 1% 10px 0;
	}
	.cff-extension{
	    width: 48.7%;
	}
	.main-navigation li a {
		padding-left: 20px;
		padding-right: 20px;
	}

	/* Home new */
	.home-banner{
		padding: 25px 0;
	}
	.home-banner .text{
		float: right;
		/*width: 72%;	*/
		width: 73%;
		margin-right: 2%;
	}
	.home-banner h1{
		font-size: 38px;
	}
	.home-banner .cta{
		font-size: 16px;
		padding: 9px 20px 11px 20px;
		margin: 30px 0;
	}
	.home-banner .fa{
		font-size: 158px;
		margin: 10px 0 0 10px;
	}


	/* Pricing testimonials */
	.support .testimonial.first, .support.white-bg .testimonial.first {
	 	margin-right: 0; 
	}
}

@media all and (max-width: 820px){
	.main-navigation li a {
		padding-left: 12px;
		padding-right: 12px;
	}

	.home-banner{
		padding: 20px 0 17px 0;
	}
	.home-banner .text{
		float: left;
		width: 67%;
		margin-left: 5%;
	}
	.home-banner h1{
		font-size: 28px;
	}
	.home-banner .fa{
		float: left;
		font-size: 100px;
		margin: 10px 0 0 2%;
	}

	/* Tabs */
	h2.tabtitle{
		margin: 0;
		font-size: 14px;
	}

	/* Footer */
	.menu-footer-container{
		clear: both;
		margin: 0;
	}
	footer .copyright {
		padding-right: 0;
		border: none;
	}
	footer .cff-likebox{
		width: 30% !important;
		margin-right: 2%;
	}
	footer #cff .cff-item{
		width: 68%;
	}

}


@media all and (max-width: 700px){

	/* Structure */
	.site-content{
		margin-top: 30px;
	}

	/* Top nav */
	.main-navigation.top-nav{
		margin-bottom: 24px !important;
	}
	.main-navigation.top-nav .menu{
		width: 100%;
		padding-bottom: 20px;
	}
	.main-navigation.top-nav .menu li a{
		color: #fff;
		line-height: 1.2;
	}
	.main-navigation.top-nav .menu li{
		margin-top: 10px;
	}
	/* Hide 'Our Plugins' menu label */
	.main-navigation.top-nav #menu-item-34855 > a{
		display: none;
	}

	/* Mobile Nav */
	.main-navigation.primary-nav {
		margin-top: 24px;
		margin-top: 1.714285714rem;
		text-align: center;
		background: #e34f0e;
		padding-bottom: 0;
	}
	.main-navigation.primary-nav .inner{
		padding: 0;
		width: 100%;
	}
	.main-navigation.primary-nav .menu-toggle{
		padding: 12px 0;
		width: 100%;
		text-transform: uppercase;
		color: #fff;
		cursor: pointer;
	}
	.main-navigation.primary-nav li {
		margin-top: 0;
		font-size: 12px;
		font-size: 0.857142857rem;
		line-height: 1.42857143;
	}
	.main-navigation.primary-nav a {
		color: #fff;
		text-decoration: none;
		background: #e34f0e;
		display: block;
		padding: 12px;
		/*font-size: 14px;*/
		font-weight: bold;
	}
	.main-navigation.primary-nav a:hover,
	.main-navigation.primary-nav .sub-menu a:hover {
		background: #e89a2e;
		color: #fff;
	}
	.main-navigation.primary-nav ul.nav-menu,
	.main-navigation.primary-nav div.nav-menu > ul,
	.main-navigation.primary-nav ul.menu {
		display: none;
		width: 100%;
	}
	.main-navigation.primary-nav ul.nav-menu.toggled-on,
	.menu-toggle {
		display: -moz-inline-stack;
		display: inline-block;
		vertical-align: top;
		zoom: 1;
		*display: inline;
	}
	.main-navigation.primary-nav .sub-menu a{
		background: #d04203;
		font-size: 12px;
		color: rgba(255,255,255,0.9);
		color: #fff;
		font-weight: normal;
	}
	.main-navigation.primary-nav .fa-caret-down{
		display: -moz-inline-stack;
		display: inline-block;
		vertical-align: top;
		zoom: 1;
		*display: inline;
	}


	.home-int-nav{
		display: none !important;
	}

	.notice{
		display: none;
	}
	.logo img{
		width: 90%;
		margin: 0 5%;
		height: auto;
	}

	.banner{
		width: 100%;
		padding: 20px 0;
		margin: -25px 0 0 0;
	}
	.banner img {
		margin-left: -10px;
		width: 100%;
	}

	.screenshots{
		margin-bottom: 0;
		padding-bottom: 30px;
	}
	.demo .actions{
		width: 100% !important;
		text-align: center;
		margin-bottom: 0;
		text-align: center;
		padding-top: 20px !important;
	}
	.demo .actions .btn {
	    width: 180px;
	    margin-left: auto !important;
	    margin-right: auto !important;
	}
	.demo-tabs {
	    float: left;
	    clear: both;
	    padding-top: 10px !important;
	}
	.demo-tabs a {
	    margin: 10px 0 0 0 !important;
	}
	#cff .cff-posts-wrap, #cff .cff-masonry-posts{
		width: 97%;
	}
	.demo #cff.cff-masonry .cff-likebox{
		margin-top: 20px !important;
		margin-left: 5px !important;
	}
	.screenshots .actions {
		margin-bottom: 0;
	}
	.actions .btn.big, .actions .btn-wrap{
		float: none;
		width: 80%;
		margin-left: 5%;
		margin-right: 5%;
		padding-left: 5%;
		padding-right: 5%;
	}
	.actions .btn.big{
		padding-top: 5px;
		padding-bottom: 10px;
		margin-bottom: 5px;

		font-size: 18px;
		padding-top: 6px;
		padding-bottom: 10px;
	}

	.features .col{
		width: 100%;
		margin-left: 0;
	}
	.support .testimonial{
		width: 100%;
		margin-left: 0;
	}

	/* Pricing page */
	.pricing{
		width: 94%;
	}
	.pricing section{
		width: 100%;
		margin: 0 0 10px 0;
	}
	.support.white-bg .testimonial{
		width: 98%;
	}
	.guarantee h3 {
		line-height: 1.2;
		margin-bottom: 15px;
	}
	p.note{
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	/* Extensions */
	.cff-extension{
	    width: 100%;
	}
	.cff-extension .inside{
		width: 100%;
		height: auto;
		padding-bottom: 10px;
	}
	.cff-extension p.desc{
		height: auto;
		padding-bottom: 20px;
	}
	/* Extension single */
	.single-download .wrapper > .inner{
		float: left;
		margin: 0 0 40px 0;
	}
	.site-content.download{
		width: 100%;
	}
	.single-download article{
		margin: 0;
	}
	.single-download #secondary{
		float: left;
		width: 92%;
		margin: 0;
	}

	/* demo */
	.layout{
		width: 100%;
		clear: both;
	}
	.demo-form {
		margin-top: 5px;
	}
	.demo h3{
		padding-top: 20px;
		line-height: 1.4;
	}

	.twitter-follow-button {
		right: 5px;
		top: -35px;
	}
	footer .twitter-follow-button{
		top: -40px;
	}

	/* Vid play btn */
	.play-video{
		top: 11%;
		left: 54%;
		width: 50px;
		height: 50px;
	}
	.play-video img{
		top: 62%;
		left: 57%;
		width: 50%;
		height: auto;
	}
	.youtube-video {
		height: 250px;
	}

	.twitter-tweet{
		width: 100% !important;
		margin: 0 0 10px 0 !important;
	}
	.tweet.first{
		margin-left: 0;
	}

	/* Forms */
	.page .gform_wrapper .top_label input.medium,
	.page .gform_wrapper .top_label select.medium,
	.page .gform_wrapper .right_label input.small,
	.page .gform_wrapper .right_label select.small,
	.page .gform_wrapper .left_label input.small,
	.page .gform_wrapper .left_label select.small{
		width: 97%;
	}

	/* Accordians */
	.accord h3 {
		padding-bottom: 15px;
		line-height: 1.5;
	}


	/* Affiilate login form */
	#loginform{
		margin-top: -0;
		border-radius: 5px;
	}

	/* New home page */
	.home-new .video,
	.home-new .reviews{
		width: 100%;
		margin-right: 0;
	}
	.home-new .reviews{
		width: 97%;
	}
	.home-new .balloons{
		max-width: 35%;
		margin: 0;
		margin-right: 3%;
	}
	.home-new .extras{
		padding: 0 0 30px 0;
	}
	.home-new h2 {
		padding: 30px 0 10px 10px;
		font-size: 20px;
	}
	.home-new .reviews h2 {
		padding-left: 0;
	}


	/* Footer */
	footer #cff{
		padding: 10px;
	}
	footer .cff-likebox{
		width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0;
	}
	footer #cff .cff-item{
		padding: 15px 0;
		width: 100%;
	}

}


@media all and (max-width: 520px){
	.home-banner .text{
		float: left;
		width: 96%;
		padding: 0 2%;
	}
	.home-banner h1{
		font-size: 24px;
	}
	.home-banner .fa{
		display: none;
	}
	.home-banner{
		padding: 15px 0 13px 0;
	}
	.home-banner .cta{
		font-size: 14px;
		padding: 9px 20px 11px 20px;
		margin: 20px 0;
	}
}


/* For the demo page */
#cff .cff-iframe-wrap {
	margin-top: 0;
}
footer .twitter-btn{
	position: absolute;
	bottom: 25px;
	right: 0;
}

/* Vairable pricing dropdowns */
.pricing section .edd_price_options{
	/*display: none;*/
	margin: 10px 0 16px 0;
}
.pricing section .edd_download_purchase_form{
	margin-top: 10px;
	padding-bottom: 5px;
}
.pricing section .edd_price_options select{
	border: 1px solid #ddd3cf;
	padding: 4px 0px;
	font-size: 12px;
}
.pricing section .edd_price_options option{
	padding: 1px 2px;
}

/*
Hide the license length variable option text in the purchase receipt (eg. 3 Years Updates & Support - +$109) until the EDD team have fixed the issue with variable prices. See: https://easydigitaldownloads.com/support/topic/adding-a-new-variable-price-is-causing-previous-purchases-to-be-labeled-wrong/#post-293139;
*/
.edd_purchase_receipt_price_name{
	display: none;	
}

/* Hide the manage sites license function in accounts */
.account #edd_sl_license_add_site_form{
	display: none;
}


/* Instagram Demo */
.demo-form .sub-row{
	width: 100%;
	float: left;
	clear: both;
}
.instagram-demo input.radio{
	float: left;
	margin-left: -1px;
}
.instagram-demo input {
	margin-left: 0;
}
.instagram-demo .sub-row label {
	padding: 11px 0 0 0;
	width: 54px;
}


/* Top nav */
body{
	float: left;
	width: 100%;
}
.main-navigation.top-nav{
	background: #282828;
	float: left;
	margin: 0;
	width: 100%;
}
.main-navigation.top-nav .inner {
	max-width: 960px;
	margin: 0 auto;
}
.main-navigation.top-nav .menu{
	float: right;
}
.main-navigation.top-nav li a{
	line-height: 2.2;
	padding: 0 15px;
}

.main-navigation.top-nav .sub-menu a{
	padding: 10px 15px;
	font-size: 14px;
	width: 210px;
}
.main-navigation.top-nav .fa{
	font-size: 17px;
	position: relative;
	top: 1px;
	margin-right: 7px;
}



/* New demo page (2019) */
.demo{
	margin-top: 30px;
}
.demo-tabs{
	padding: 0 0 20px 0;
}
.demo-label{
	margin-right: 10px;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: bold;
}
.demo-tabs a{
	display: inline-block;
    padding: 12px 10px;
    margin: 2px;
    background: #edb72f;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;

    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
}
.demo-tabs .fa{
	margin-right: 2px;
}
.demo-tabs a.selected,
.demo-tabs a:hover {
    background: #e34f0e;
}
#secondary.cff-demo .btn{
	float: right;
	width: 24%;
	box-sizing: border-box;
}
.cff-demo .btn.secondary{
	background: #D1C2BC;
	font-size: 20px;
	padding: 10px 5%;
	margin-top: 10px !important;
}
.cff-demo .btn.big.secondary span {
	margin-top: 7px;
}
.cff-demo .demo-form{
	width: 100%;
	padding: 25px 25px 10px 25px;
	margin-bottom: 0;
	box-sizing: border-box;
}
.cff-demo .demo-form h4{
	float: left;
	margin: 0;
}
.cff-demo .demo-form .section-label{
	display: block;
    width: auto;
    margin-top: -18px;
    background: #f4edea;
    padding: 7px 7px 0 7px;
    margin-left: 0px;
}
.cff-demo .demo-form #id{
	float: left;
	clear: both;
	width: 100%;
	min-width: 295px;
}
.cff-demo.cff-columns .demo-form #id{
	min-width: 400px;
}
/* Minimum width of 600 pixels. */
@media screen and (max-width: 600px) {
	.cff-demo.cff-columns .demo-form #id{
		min-width: 300px;
	}
}
.cff-demo.cff-columns .demo-view-btn{
	float: left;
}

.cff-demo .demo-form .layout {
    width: 100%;
    clear: both;
    float: left;
    padding: 6px 0;
}
.cff-demo .demo-form .layout div{
	float: left;
    margin: 0 9px;
}

.cff-demo .demo-form .col {
    width: auto;
    float: left;
    min-height: 43px;
    margin: 5px 20px 10px 0;
    padding: 5px 0;
    border-radius: 5px;
}

.cff-demo .demo-view-btn{
	float: left;
    clear: none;
    width: 240px;
}
.cff-demo .demo-view-btn input{
	float: left;
	font-size: 14px;
	margin-top: 15px;
    padding: 17px 26px;
}
.cff-demo .demo-view-btn input:active{
	box-shadow: none !important;
}

.cff-demo .demo-view-btn p {
    line-height: 1.3;
    float: left;
    width: 110px;
    padding: 8px 0 0 15px;
}
.cff-demo .demo-view-btn p a{
	text-decoration: none;
}
.cff-demo .layout label{
	float: none;
	display: inline;
}

/* Include settings */
.cff-demo .include{
	clear: both;
	max-width: 275px;
}
.cff-demo .include input{
	float: left;
}
.cff-demo .include div{
	display: inline-block;
	margin-bottom: -6px;
	padding-right: 3px;
}

/* Timeline Demo main feed */
.timeline-feed-one{
	float: left;
	clear: none;
	width: 65%;
	margin-right: 5%;
}
.timeline-feed-two{
	position: relative;
	float: left;
	clear: none;
	width: 30%;
}
/* Minimum width of 600 pixels. */
@media screen and (max-width: 600px) {
	.timeline-feed-one, .timeline-feed-two{
		width: 100%;
	}
}

.timeline-feed-two .cff{
	border-radius: 5px;
}
.timeline-feed-two .cff a{
	color: #edb72f;
}
.timeline-feed-two .cff-story{
	color: #ccc;
	font-size: 13px;
}
.timeline-feed-two .cff-load-more:hover{
	background: #edb72f !important;
	text-decoration: none;
}
.what-this-btn{
	padding: 5px 10px;
    background: #edb72f;
    color: #fff;
    font-size: 12px;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px 0 0 0;
    float: right;
    clear: both;
    position: relative;
    z-index: 99999;
    margin-right: 1px;
}
.what-this-btn:hover{
	background: #e34f0e;
	color: #fff;
}
.this-is{
	display: none;
	position: absolute;
	z-index: 99998;
    bottom: 0;
    width: 88%;
    padding: 12px 6%;
    color: #eee;
    background: #e34f0e;
    border-radius: 5px;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    padding-bottom: 30px;
}

/* Demo CTA buttons */
.demo .actions{
	width: 500px;
	padding-top: 50px;
}
.demo .actions .btn{
	width: 180px;
}
.demo .actions .btn.light{
	padding-top: 18px;
    padding-bottom: 22px;
}
.demo .actions .btn span {
    margin-top: 6px;
}

/* Carousel demo notice */
.cff-carousel-demo .demo-form{
	padding: 15px 20px;
}



.demo-form .bottom p {
    width: auto;
    font-size: 11px;
    margin: 10px 0 0 15px;
}

#demo-group-notice{
	display: none;
	margin: 10px 0;
    background: #F7E6E6;
    padding: 8px 10px;
    border: 1px solid #BA7B7B;
    color: #592626;
    line-height: 1.2;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

/* Minimum width of 600 pixels. */
@media screen and (min-width: 700px) {
	.site-content.demo,
	#secondary.cff-demo {
		float: left;
		width: 100%;
	}
}
.site-content.demo{
	width: 100%;
}

/* Demo post styling */
#cff.cff-masonry .cff-post-links {
    float: left;
    margin: 10px 0 5px 0;
}
.cff-masonry{
	width: 103% !important;
    margin-left: -1.5% !important;
}




/* New footer */
footer[role="contentinfo"] {
	padding: 0 0 20px 0;
    background: #282828;
}
footer .footer-band{
	background: #e34f0e;
	/*background: linear-gradient(115deg, rgba(227,79,14,1) 0%, rgba(232,154,46,1) 100%);*/
	background: linear-gradient(115deg, rgba(227,79,14,1) 0%, rgba(232,136,46,1) 100%);
	padding: 20px 0;
}
footer #cff{
	margin: 0;
}
footer .site-info{
	padding: 40px 0 20px 0;
	margin: 0;
}
.footer-blurb{
	color: #a09c9a;
	line-height: 1.5;
	font-size: 14px;
}
footer[role="contentinfo"] .footer-blurb b{
	font-weight: 800;
	color: #ccc7c5;
}
footer[role="contentinfo"] .footer-blurb a{
	color: #ccc7c5;
}
footer[role="contentinfo"] .footer-blurb a:hover,
footer[role="contentinfo"] .footer-blurb a:focus{
	color: #fff;
}
.footer-blurb span{
	display: block;
	padding-top: 2px;
	font-size: 13px;
}
.footer-links{
	padding-top: 20px;
}
footer[role="contentinfo"] .footer-links a,
footer[role="contentinfo"] .copyright{
	color: #a09c9a;
}
footer[role="contentinfo"] .footer-links a:hover,
footer[role="contentinfo"] .footer-links a:focus{
	color: #fff;
}

.banner-grad{
	float: left;
    width: 100%;
	/*padding-top: 10px;*/
	background: #e34f0e;
}
@media screen and (min-width: 700px){
	.main-navigation .current-menu-item > a, .main-navigation .current-menu-ancestor > a, .main-navigation .current_page_item > a, .main-navigation .current_page_ancestor > a {
	    background: #e34f0e;
	    margin-bottom: -1px;
	}
	.main-navigation li {
	    margin-bottom: -1px;
	}
	/* Grey nav item select for product home pages */
	.page-template-page-cff-php .main-navigation .current-menu-item > a,
	.page-template-page-cff-php .main-navigation .current-menu-ancestor > a,
	.page-template-page-cff-php .main-navigation .current_page_item > a,
	.page-template-page-cff-php .main-navigation .current_page_ancestor > a {
	    background: #444;
	}
	.page-template-page-cff-php .main-navigation .current-menu-item > a:hover,
	.page-template-page-cff-php .main-navigation .current-menu-ancestor > a:hover,
	.page-template-page-cff-php .main-navigation .current_page_item > a:hover,
	.page-template-page-cff-php .main-navigation .current_page_ancestor > a:hover {
		background: #e89a2e;
	}
	.main-navigation.primary-nav li ul.sub-menu {
	    margin-top: -1px;
	}
}
.banner-grad .banner{
	padding: 40px 0 45px 0;
}
.banner-grad h1{
	font-size: 44px;
    line-height: 0.95;
    font-weight: 800;
    color: #fff;
}
.banner-grad h1 span{
    font-weight: 300;
    font-size: 32px;
    margin-left: -2px;
    color: #e34716;
}
.banner-grad h2{
	font-weight: 300;
	font-size: 19px;
	color: #999;
	padding-top: 10px;
}
.primary-nav{
	position: relative;
	box-shadow: 0 30px 30px 0 rgba(0,0,0,0.1);
}

/* Lite demo banner */
.banner-grad.lite-demo .banner {
    padding: 60px 0 65px 0;
}
.demo-2020 .cta{
	display: inline-block;
	background: #e34f0e;
	color: #fff;
	padding: 15px 30px;
	border-radius: 5px;
	margin-right: 10px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.demo-2020 .cta.secondary{
	background: rgba(255,255,255,0.5);
	border: 1px solid #e89a2e;
	color: #d48416;
    font-weight: normal;
}
.lite-demo .banner .cta.secondary:active,
.lite-demo .banner .cta.secondary:hover {
    border: 1px solid #fff;
    color: #fff;
}
.demo-2020 .cta:hover,
.demo-2020 .cta:focus{
	background: #e89a2e;
}
.demo-2020 .cta.secondary:hover,
.demo-2020 .cta.secondary:focus{
	background: #fff;
}
.demo-2020 .cta svg{
	width: 16px;
    height: 16px;
    position: relative;
    top: 1px;
    margin-left: 5px;
    margin-bottom: -1px;
}
.demo-2020 .fa-secondary{
	opacity: 0.7;
}
.lite-demo .banner .cta.secondary {
    border: 1px solid #ccc;
    color: #ccc;
}
.banner-grad.lite-demo h2 {
    font-weight: 300;
    font-size: 20px;
    color: #cccc;
    padding-top: 21px;
    line-height: 1.3;
    max-width: 80%;
    margin: 0 auto;
}

.sb-shadow{
	box-shadow: 0 0 50px 0 rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
}

.CampaignType--floating{
	z-index: 9999 !important;
}
/* Demo floating bar */
/*.CampaignType--floating .Campaign__alphaLayer{
	background: linear-gradient(115deg, rgba(227,79,14,1) 0%, rgba(232,136,46,1) 100%) !important;
}*/

.sb-alert-bubble {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    margin: 0;
    padding: 0 5px;
    margin: 0 0 0 8px;
    height: 18px;
    border-radius: 9px;
    background-color: #ca4a1f;
    color: #fff;
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    z-index: 26;
}
#menu-top .sb-alert-bubble{
	margin: 6px 0 0 6px;
	background: #333;
}
/* SW demo */
[id^=sb-wall].sb-wall .sbsw-author-name {
    padding: 3px 30px 3px 0;
}
.cff-demo .social-wall-demo-notice{
	background: rgba(255,255,255,0.5);
    padding: 15px 20px;
    margin-bottom: 20px;
}