/*
Theme Name: Motivation Factor
Theme URI: http://motivationfactor.com/wp-content/themes/mfactor
Author: Joanne Masterson
Author URI: http://bluejprojects.com/
Description: Custom theme for Motivation Factor.
Version: 1.0
Template: twentytwelve

*/

/* =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:focus, a {
	outline: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
masthead {
	position: relative;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}
.dropdown-menu{
	position: static;
	float: none;
	min-width: none;
	padding: 0px;
	margin: 0px;
	font-size: inherit;
	text-align: left;
	border: none;
	border-radius: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	min-width: 0;
}
.dropdown-menu>li{
	margin: 0px !important;
}
.dropdown-menu>li>a{
	white-space: normal;
}

.nav .open>a:hover,
.nav .open>a:focus,
.nav>li>a:hover,
.nav>li>a:focus,
.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus{
	background-color: inherit;
	text-decoration: none;
}
.nav>li>a{
	padding: 0px;
}

/* 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;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
article.post-password-required input[type=submit],
li.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	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-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.pinpointerbutton {
	background: #ff7d03;
	border-radius: 7px;
	position: relative;
	max-width: 300px;
}
.pinpointerbutton:hover {
	background: #f35f1e;
}
.pinpointerbutton:active {top: 1px;}

.pinpointerbutton a {
	color: #fff; 
	padding:15px; 
	display: block;
	text-decoration: none;
	text-align: center;
	text-transform: uppercase;
}
.menu-toggle,
input[type="submit"],
article.post-password-required input[type=submit] {
	cursor: pointer;
}
.menu-toggle:hover,
input[type="submit"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
input[type="submit"]:active,
article.post-password-required input[type=submit]:active,
input[type="submit"].toggled-on {
	color: #777;
	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;
}

/* Form fields */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
textarea {
	padding: 6px;
	padding: 0.428571429rem;
	font-family: inherit;
	border: 1px solid #ccc;
	border-radius: 3px;
}

/* 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,
.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);*/
}
/* turn off default shadows */
.entry-content img.noshadow, 
.comment-content img.noshadow, 
.widget img.noshadow, 
.author-avatar img.noshadow, 
img.wp-post-image.noshadow {
	box-shadow: none;
}
.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: #777;
}
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 {
	display: block;
	width: 90%;
}
.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-navigation {
	position: relative;
	z-index: 999;
}
.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: #777;
	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: #21759b;
}
a:hover {
	color: #0f3647;
}

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

/* Page structure */
.site {
	padding: 0 24px;
	padding: 0 1.714285714rem;
	padding: 0 24px;
	padding: 0 1.714285714rem;
	/*background-color: #fff;*/
}
#main {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}
body.home .site-content {
	margin-top: 0;
}
body.home .main-navigation div.nav-menu > ul {
	border-bottom: none;
}
body.home h1.entry-title {
	display: none;
}
body.home .Widget_Include_Post {
	display: inline;
}
.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: 2;
}
.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #777;
}
.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: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation li.first{
	margin-top: 0px;
}
.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 {
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 7px;
	margin-bottom: .5rem;
	width: 100%;
}
.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: #777;
}
#homewidgets.widget-area .widget a {
	color: #fff;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.teaser {	
    background-color: black;
    border-radius: 10px 10px 10px 10px;
    padding: 10px;
	border: 3px solid rgba(0,0,0,0.3);
	width: 55%;
	max-width: 180px;
	position: relative;
	z-index: 3;
	-moz-background-clip: padding;     /* Firefox 3.6 */
	-webkit-background-clip: padding;  /* Safari 4? Chrome 6? */
	background-clip: padding-box;      /* Firefox 4, Safari 5, Opera 10, IE 9 */
				
				
	color: #f2f2f2;
	text-indent: 10px;
	line-height: 1.25em;
}
.teaser:before {
	content: '\201C';
	color: #F93;
	height: 0px;
	font-size: 48px;
	float: left;
	margin-top: -30px;
	margin-left: -20px;

	}
.widget-area .widget p.teaser {
	margin-bottom: 0px;
}
.author {
	margin: 10px 0;
	font-weight: bold;
}

/* Footer */
footer[role="contentinfo"] {
	border-top: 1px solid #ededed;
	clear: both;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	max-width: 960px;
	max-width: 68.571428571rem;
	margin-top: 24px;
	margin-top: 1.714285714rem;
	margin-left: auto;
	margin-right: auto;
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
footer[role="contentinfo"] a {
	color: #686868;
}
footer[role="contentinfo"] a:hover {
	color: #21759b;
}
#mfactor-footer {
	background: #000;
}
.mfooter-wrap {
	font-size: 0.857143rem;
    line-height: 2;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.71429rem;
    max-width: 68.5714rem;
    padding: 1.71429rem 0;
	color: #7a7877;
}
.mfooter-wrap a, .mfooter-wrap a:visited, .mfooter-wrap a:active {
	text-decoration: none;
	color: #fe7e03;
}
.mfooter-wrap a:hover {
	color: #F30;
}
.business-info {
	width: 66%;
	max-width: 68.5714rem;
	float: left;
}
.footer-rt {
	width: 29%;
	float: left;
}
.agency {
	clear: both;
	float: right;
}
.agency a, .agency a:visited {
	color: #6d9af0;
}
.agency a:hover {
	color: #567bc1;
}
/* =Main 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: #777;
}
.comments-link a,
.entry-meta a {
	color: #777;
}
.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: #777;
	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 {
	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 {
	font-size: 18px;
	font-size: 1.285714286rem;
	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;
}
.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 {
	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 {
	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 {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style: decimal outside;
}
.entry-content li,
.comment-content li {
	margin: 0 0 1em 20px;
	margin: 0 0 1em 1.1rem;
}
.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: 24px;
	padding: 1.714285714rem;
}
.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: #777;
	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;
}
.site-content article {
	margin: 0 24px 24px 0;
	margin: 0 1.714285714rem 1.714285714rem 0;
	margin-bottom: 72px;
	margin-bottom: 5.142857143rem;
	border-bottom: 4px double #ededed;
}
.home .site-content article {
	border-top: 4px double #ededed;
}
.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: #777;
}
.single-author .entry-meta .by-author {
	display: none;
}


/* =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: #777;
	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: #777;
}
.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 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
a.comment-reply-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.commentlist .children {
	margin-left: 48px;
	margin-left: 3.428571429rem;
}

/* 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;
}
label ~ span.required {
	display: block;
	float: left;
	margin: -18px 0 0 -16px;
	margin: -1.285714286rem 0 0 -1.142857143rem;
}


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

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}	
#home-threewidget-area, 
#home-threewidget-area img, 
#home-threewidget-area img.aligncenter {
	margin: 10px auto 0 auto;
	text-align: center;
}
#home
#home-threewidget-area h3 {
	text-align: center;
}
#home-threewidget-area br {
	height: 0;
	line-height: 0px;
	float: left;
}
#home-threewidget-area icongroup:link *,
#home-threewidget-area icongroup:visited *,
#home-threewidget-area icongroup:active *{
	color: #636363;
	text-decoration: none;
}
.icon a:hover {
	color: #ff7e02;
}
#home-threewidget-area p {
	white-space-collapse: collapse;
}
#home-threewidget-area a img {
	position: relative;
}
#home-threewidget-area a img:active {
	top: 1px;
}
#home-threewidget-area h3 a {
	text-decoration: none;
	display: block;
}
.template-front-page .site-content article {
	margin-bottom: 0;
	clear: both;
}
.template-front-page .hwidget3 {
min-height: 150px;

}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
}
.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: #777;
}
.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;
}
.template-front-page .entry-content .widget_recent_entries h2.widgettitle {
	display: none;
}


/* =Widgets
-------------------------------------------------------------- */
a.login-button, a.login-button:link, a.login-button:visited {
	display: block;
	position: relative;
	color: #fff;
		padding: 12px 4%;
	background: #7d7d7f url(img/arrow-orange.gif) scroll 96% center no-repeat;
	border-radius: 8px;
	border: 3px solid #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	width: 85%;
	text-decoration: none;
   -webkit-transition-property:color, background;  
   -webkit-transition-duration: 1s, 1s;  
   -webkit-transition-timing-function: linear, ease-in;
   -moz-transition-property:color, background;
   -moz-transition-duration: 1s, 1s;
   -moz-transition-timing-function-: linear, ease-in;  
   -o-transition-property:color, background;
   -o-transition-duration: 1s, 1s;
   -o-transition-timing-function-: linear, ease-in;  
}
a.login-button:hover, 
.widget-area .widget a.login-button:hover,
a.download-center:hover,
.widget-area .widget a.download-center:hover {
	background: #333 url(img/arrow-orange.gif) scroll 96% center no-repeat;
}
a.login-button:active {
	top: 1px;
}
a.download-center, a.download-center:link, a.download-center:visited {
	display: block;
	position: relative;
	-webkit-hyphens: none;
	-moz-hyphens: none;
	hyphens: none;
	color: #fff;
	padding: 12px 4%;
	background: #7d7d7f url(img/arrow-orange.gif) scroll 96% center no-repeat;
	border-radius: 8px 8px 0 0;
	border: 3px solid #fff;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	width: 85%;
	text-decoration: none;
   -webkit-transition-property:color, background;  
   -webkit-transition-duration: 1s, 1s;  
   -webkit-transition-timing-function: linear, ease-in;
   -moz-transition-property:color, background;
   -moz-transition-duration: 1s, 1s;
   -moz-transition-timing-function-: linear, ease-in;  
   -o-transition-property:color, background;
   -o-transition-duration: 1s, 1s;
   -o-transition-timing-function-: linear, ease-in;  
   -ms-transition-property:color, background;
   -ms-transition-duration: 1s, 1s;
   -ms-transition-timing-function-: linear, ease-in;   
}
#homewidgets.widget-area .homewidget.widget {
		margin-bottom: 10px;
		margin-top: 0px;
}
ul.downloads-list {
	padding: 12px 4%;
	color: #fff;
	background: #ff7d03;
	border-radius: 0 0 8px 8px;
	border: 3px solid #fff;
	border-top: none;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
	width: 85%;
   -webkit-transition-property:color, background;  
   -webkit-transition-duration: 1s, 1s;  
   -webkit-transition-timing-function: linear, ease-in;
   -moz-transition-property:color, background;
   -moz-transition-duration: 1s, 1s;
   -moz-transition-timing-function-: linear, ease-in;  
   -o-transition-property:color, background;
   -o-transition-duration: 1s, 1s;
   -o-transition-timing-function-: linear, ease-in; 
   -ms-transition-property:color, background;
   -ms-transition-duration: 1s, 1s;
   -ms-transition-timing-function-: linear, ease-in;   
}
ul.downloads-list:hover {
	cursor: pointer;
	background: #f26722;
}
#tm-orgbg {
	background: url(img/tmorgchange-bg.gif) no-repeat scroll center top;
	font-size: 11px;
}
.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;
}
.widget-button {
	position: relative;
	top:0px;
}
.widget-button:active {
	position: relative;
	top: 1px;
}

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

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

#mindloop_disclaimer_content {
width: 800px;
max-width: 90%;
}

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

/* Max width of 300 pixels. */
@media screen and (max-width: 400px) {
	#head-langs {
		position: absolute;
		top:3px;
		left: 20px;
	}
}

/* Max width of 600 pixels. */
@media screen and (max-width: 600px) {
	#homeslider {
	max-width: 100%;
	}
	#head-searchform {
		display: none;
	}
	#head-langs a.mf_qtrans_flag img {
		float: left;
		height: 20px;
		width: 30px;
		padding-right: 5px;
	}

	#head-langs {
		position: absolute;
		top: 3px;
		left: 20px;
	}
	#homewidgets {
		width: 100%;
	}
	.dropdown-menu{
		text-align: center;
	}
	.main-navigation li{
		margin-top: 14px;
		margin-top: 1rem;
	}
	.template-front-page #homesecondary #secondary.widget-area {
		display: inline;
		clear: none;
		border: none;
		float: left;
		margin-left: 2%;	
		padding-top: 0;
		width: auto;
		}
	.template-front-page #homesecondary .widget-area .widget {
		width: auto;
	}
	.template-front-page .hwidget1,
	.template-front-page .hwidget2,
	.template-front-page .hwidget3 {
		width: auto;
		margin-bottom: 10px;
	}
	.mf-certification {
		padding-top: 80px;
		background: #fff url(img/icon-certification2.png) no-repeat scroll center -180px;
		text-decoration: none;
		color: #636363;
	}
	.mf-certification:hover {
		background: url(img/icon-certification2.png) no-repeat scroll center -8px; 
		text-decoration: none;
	}
	.mf-consulting {
		padding-top: 80px;
		background: #fff url(img/icon-consulting2.png) no-repeat scroll center -180px;
		text-decoration: none;
		color: #636363;
	}
	.mf-consulting:hover {
		background: url(img/icon-consulting2.png) no-repeat scroll center -8px; 
		text-decoration: none;
	}
	.mf-academy {
		padding-top: 80px;
		background: #fff url(img/icon-academy2.png) no-repeat scroll center -180px;
		text-decoration: none;
		color: #636363;
	}
	.mf-academy:hover {
		background: url(img/icon-academy2.png) no-repeat scroll center -8px; 
		text-decoration: none;
	}
	.home #page.site, #page.site {
		background: none;
	}
	#homewidgets.widget-area .widget a {
		margin: 0 auto;
	}
}
/* Maximum width of 960 pixels */
@media screen and (max-width: 960px) {
	a.download-center, a.download-center:link, a.download-center:hover, a.download-center:visited, .widget-area .widget a.download-center:hover {
			border-radius: 8px;
		}
		ul.downloads-list {
			display: none;
		}
}
/* Minimum width of 600 pixels. */
@media screen and (min-width: 600px) {
	body.home.page .main-navigation div.nav-menu > ul {
	border-bottom: none;
	}
	body.page .main-navigation div.nav-menu > ul,
	body.blog .main-navigation div.nav-menu > ul,
	body.page #site-navigation {
	border-bottom: 1px solid #e6e6e6;
	}
	body.home.page .main-navigation div.nav-menu > ul, 
	body.home.page #site-navigation {
		border-bottom: none;
	}
	ul#menu-members-only {
		border-top: 1px solid #e6e6e6;
	}
	#homeslider {
	max-width: 65%;
	/*float: left; *//* float breaks ie9 -don't do it */
		}
	
	.page #page #secondary {
	float: left;
	margin: 0 0 0 0;
	}
	.author-avatar {
		float: left;
		margin-top: 8px;
		margin-top: 0.571428571rem;
	}
	.author-description {
		float: right;
		width: 80%;
	}
	.site {
		margin: 0 auto;
		max-width: 960px;
		max-width: 68.571428571rem;
		overflow: hidden;
	}
	.site-content {
		float: left;
		width: 65.104166667%;
	}
	body.template-front-page .site-content {
		max-width: 66%;
		float: left;
	}
	body.single-attachment .site-content,
	body.full-width .site-content,
	body.single-event .site-content {
		width: 100%;
	}
	body.single-event .site-content {
		max-width: 800px;
		border-right: 1px dashed #ccc;
 		border-left: 1px dashed #ccc;
  		padding: 0 20px;
	}
	#secondary {
		float: left;
		margin-left: 5%;
	}
	.widget-area {
		float: right;
		width: /*26.041666667%*/ 29%;
	}
	.site-header h1,
	.site-header h2 {
		text-align: left;
	}
	.site-header h1 {
		font-size: 26px;
		font-size: 1.857142857rem;
		line-height: 1.846153846;
	}
	.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%;
	}
	.main-navigation ul {
		margin: 0;
		text-indent: 0;
	}
	.main-navigation li a,
	.main-navigation li {
		display: inline-block;
		text-decoration: none;
	}
	.main-navigation li a {
		border-bottom: 0;
		color: #6a6a6a;
		line-height: 3.692307692;
		text-transform: uppercase;
	}
	.main-navigation li a:hover {
		color: #000;
	}
	.main-navigation li {
		//margin: 0 40px 0 0;
		//margin: 0 2.857142857rem 0 0;
		margin: 0 35px 0 0;
		margin: 0 2.5rem 0 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;
	}
	.main-navigation li ul li a {
		background: #efefef;
		border-bottom: 1px solid #ededed;
		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;
	}
	.main-navigation li ul li a:hover {
		background: #e3e3e3;
		color: #444;
	}
	.main-navigation .current-menu-item > a,
	.main-navigation .current-menu-ancestor > a,
	.main-navigation .current_page_item > a,
	.main-navigation .current_page_ancestor > a {
		color: #636363;
		font-weight: bold;
		border-bottom: 2px solid #ff7d00;
	}
	body.home .main-navigation .current-menu-item > a,
	body.home .main-navigation .current-menu-ancestor > a,
	body.home .main-navigation .current_page_item > a,
	body.home .main-navigation .current_page_ancestor > a {
		border-bottom: none;
	}
	.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%;
	}
	#homefeatures {
	background: #000;
    float: left;
    width: 100%;
	display: block;
	}
	/* mf styles */
	#homewidgets.widget-area{
		clear: none;
		display: inline;
		float: right;
		padding-top: 0;
		width: 32%;
		margin-top: 15px;
	}
	#homewidgets .homewidget {
		clear: both;
		float: left;
	}
	.template-front-page #homesecondary #secondary.widget-area {
		display: inline;
		clear: none;
		border: none;
		float: left;
		margin-left: 2%;	
		padding-top: 20px;
		width: 32%;
	}
	.template-front-page #homesecondary .widget-area .widget {
		width: auto;
	}
	.template-front-page #homesecondary .widget-area .widget.widget_categories {
		width: 100%;
	}
	/* end mf styles */
	.template-front-page .widget-area .widget,
	.template-front-page.two-sidebars .widget-area .front-widgets {
		float: left;
		width: /*51.875%*/ 100%;
		/*margin-bottom: 24px;
		margin-bottom: 1.714285714rem;*/
		margin: 15px 0;
		margin: 1.071428571rem 0;
		
	}
	.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*/ left;
		width: /*39.0625%*/  100%;
		/*margin: 0 0 24px;
		margin: 0 0 1.714285714rem;*/
		margin: 0;
	}
	
	.template-front-page.two-sidebars .widget,
	.template-front-page.two-sidebars .widget:nth-child(even) {
		float: none;
		/*width: auto; */ /* use #homewidgets .widget-area styles instead */
	}
	.template-front-page .hwidget1,
	.template-front-page .hwidget2,
	.template-front-page .hwidget3 {
		float: left;
		width: 30%;
	}
	#frontsecondary .first.front-widgets,
	#frontsecondary .second.front-widgets {
		width: 40%; 
		float: left;
	}
	/* Search form */
	#head-searchform {
		position: absolute;
		top: 3px;
		left: 66%;
		width: 80%;
	}
	/* flag menu */
	#head-langs {
		position: absolute;
		top: 35px;
		left: 66%;
	}
}

/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	/*body.home.page.page-template.custom-background.custom-background-white {
		background-image: url(img/body-bg.gif);
		background-position: 0 -8px;
		background-repeat: repeat-x;
	}*/
	body.page.custom-background.custom-background-white {
		background-image: none;
		background-color: #fff;
	}
	body .site {
		padding: 0 40px;
		padding: 0 2.857142857rem;
		margin-top: 0;
		margin-top: 0rem;
		margin-bottom: 48px;
		margin-bottom: 3.428571429rem;
		box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3);
	}
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
	#homefeatures {
	background: none repeat scroll 0 0 #000000;
    float: left; 
    width: 100%;
	display: block;
	position: relative;
	}
	/* Home Page Slider */
	#homeslider {
		background: #000;
		min-height: 320px;
	}
	#homeslider .soliloquy-container .soliloquy-slides:after {
		/*clear: both; *//* ie9 fix */
		content: ".";
		height: 0;
		line-height: 0;
		visibility: hidden;
		/*float: left; */ /* slider navigation fix */
	}
	/* Header extras */
	#search-2 {
		/*position: relative;
		left: 50%;*/
		float: right;
		clear: both;
	}
	#text-8{
		float: right;
		clear: both;
	}
	#head-langs, #head-searchform {
		position: inherit;
		float: right;
	}
	#head-searchform {
		width: auto;
	}
	#head-langs {
		padding-left: 5px;
	}
	.page #page #secondary {
	float: left;
	margin: 0 0 0 5%;
	}
	.home #page.site {
		background: #fff url(img/content-bg.png) scroll 63% top no-repeat;
		}
	#page.site {
		background: #fff url(img/content-bg.png) scroll 50% top no-repeat;
	}
	.page.page-template-page-templatesfull-width-php #page.site,
	.single.single-event #page.site {
		background: #fff;
	}
}

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

@media print {
	body {
		background: none !important;
		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 {
		font-size: 10pt;
		text-align: left;
	}
	.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 {
		float: left;
		margin: 0;
		width: 100%;
	}
	.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;
	}
}


/* =IE 7 and 8
----------------------------------------------- */

.ie .skip-link,
.ie .screen-reader-text,
.ie .assistive-text {
	clip: rect(1px 1px 1px 1px); /* IE7 */
}
.ie .site {
	margin: 48px auto;
	max-width: 960px;
}
.ie .site-content {
	float: left;
	width: 65.104166667%;
}
.ie .full-width .site-content,
.ie .single-event .site-content {
	float: none;
	width: 100%;
}
.ie .widget-area {
	float: right;
	width: 26.041666667%;
}
.ie img.size-full,
.ie img.size-large,
.ie img.header-image,
.ie img.wp-post-image {
	width: auto; /* Prevent stretching of full-size and large-size images with height and width attributes in IE8 */
}
/* fix ie8 1-10-13 bjp */

#head-langs, #head-searchform {
	position: inherit;
	float: right;
}
#head-searchform {
	width: auto;
}
#head-langs {
	padding-left: 5px;
}
/*  Flex slider
----------------------------------------------- */
.flex-container {
	float: left;
}
/*  Flags 
----------------------------------------------- */
#head-langs img {
	border-top: 1px solid #fff;
	padding-left: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
/*  Widget hover  
----------------------------------------------- */
.mf-academy {
	padding-top: 100px;
	background: #fff url(img/icon-academy2.png) no-repeat scroll center -172px;
	text-decoration: none;
	color: #636363;
}

.mf-academy:hover {
	background: #fff url(img/icon-academy2.png) no-repeat scroll top center;
	text-decoration: none;
}
.icon a.mf-academy {
	color: #636363;
	transition-duration: .5s;
	transition-property: color;
	-moz-transition-duration: .5s;
	-moz-transition-property: color;
}
.icon a.mf-academy:hover,
.icon a.mf-consulting:hover,
.icon a.mf-certification:hover {
	color: #FF7E02;
	transition-duration: .5s;
	transition-property: color;
	-moz-transition-duration: .5s;
	-moz-transition-property: color;
	-webkit-transition-duration: .5s;
	-webkit-transition-property: color;
	-o-transition-duration: .5s;
	-o-transition-property: color;
	-ms-transition-duration: .5s;
	-ms-transition-property: color;
}
.mf-consulting {
	padding-top: 100px;
	background: #fff url(img/icon-consulting2.png) no-repeat scroll center -172px;
	text-decoration: none;
	color: #636363;

}
.mf-consulting:hover {
	background: url(img/icon-consulting2.png) no-repeat scroll top center; 
	text-decoration: none;
}
.mf-certification {
	padding-top: 100px;
	background: #fff url(img/icon-certification2.png) no-repeat scroll center -172px;
	text-decoration: none;
	color: #636363;

}
.mf-certification:hover {
	background: url(img/icon-certification2.png) no-repeat scroll top center; 
	text-decoration: none;
}
/* imperfect quotes testimonials widgets */
.widget_imperfect_quote {
}
.imperfect-quotes {
    font-size: 0.928571rem;
    line-height: 1.64615;
	font-style: italic;
	position: relative;
	-moz-hyphens: none;
    -ms-hyphens: none;
    -webkit-hyphens: none;
    hyphens: none;
	border-bottom: 4px double #EDEDED;
}
.widget_imperfect_quote div.imperfect-quotes {
	background-image: none;
	padding: 0 0 20px 0;
	margin: 0 0 20px 0;
}
.widget_imperfect_quote h3.widget-title {
	display: none;
	}
.widget_imperfect_quote .teaser:before {
    color: #FF9933;
    content: "“";
    float: left;
    font-size: 48px;
    height: 0;
    margin-left: -20px;
    margin-top: -30px;
}
.widget_imperfect_quote blockquote {
	margin-top: 25px;
}
.widget_imperfect_quote blockquote:after {
	content: '\201D';
	color: #F93;
	font-size: 48px;
	position: relative;
	top: 15px;
	line-height: 1px;
	clear: both;
}
.widget.widget_imperfect_quote img.wp-post-image {
	position: absolute;
	top: 0px;
	border-radius: 5px 5px 5px 5px;
	left: 2%;
	box-shadow: none;
	z-index: 2;
}
.imperfect-quotes-author {
	display: block;
	font-weight: bold;
	padding: 6px 0;
}
/* Partner zone */
#post-614 form label {
	display: block;	}
/* mailchimp signup */
#mc_embed_signup input.button {
	background: none repeat scroll 0 0 #F71E26;
    border: 1px solid #000000;
    color: #FFFFFF;
    float: right;
    font-weight: bold;
    padding: 1px 1px 2px;
	position: relative !important;
	margin-top: -55px;
}
#mc_embed_signup form {
	font-size: 0.928571rem;
    line-height: 1.84615;
}
/* sharedaddy sharing tools */
body.home div.sharedaddy {
	float: left;
}


/* New Home Page */

/* 4 Widgets after the menu */
#slideshow {
	color:#fff;	
	background-image: url(img/bg-slideshow.png);
	background-size: cover;
	border-top:3px solid #FFA350;
	background-color: #434343;
	min-height:490px;}

.menu-toggle {
    margin-bottom: 10px;
    width: 100%;
}
.main-navigation ul.nav-menu.toggled-on {
	width: 100%;
	margin-bottom:15px;}

/* Three Widgets */
#home-threewidget-area br {
	float: none;}

	#text-4 {
		margin: 28px auto 40px auto;
		line-height: 26px;
		line-height: 36px;
		font-size:24px;
		font-style: italic;
		max-width: 800px;}

		#text-4 span {
			color: #FD8428;}
	
			#text-4 h2 {
				margin-top:14px;
				font-size: 29px;
				font-weight: bold;}

				#text-4 h2 span {
					color: #fd8423;}

#text-5 h2,
#text-6 h2,
#text-7 h2 {
	font-weight: normal;
	margin-top: 15px;
	font-size: 26px;
	}

/* new to motivation factory row */

.row1.new {
	position: relative;
    font-size: 18px;
    line-height: 26px;
    padding: 40px 0 100px;}

.row1.new h4 {
	color: #ff7300;}

.button {
	/*position: absolute;
	bottom:30px;
	right:30%;*/
	display: block;
	text-align: center;
	margin: 0 auto;}

.btn.black {
	text-transform: uppercase;
	margin-top: 15px;	
    background-color: #000000;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    padding: 12px 0;
    right: 270px;
    text-decoration: none;
    width: 210px;}

	.btn.black:hover,
	.btn.black:focus {
		background-color: #1A1A1A;}

/* motivationbrain area*/

#motivationbrain {
	background-color: #E5E5E5;
	}
	
	#motivationbrain .row {
		position: relative;}

	#motivationbrain {
		line-height: 26px;		
		font-size:18px;}

	#motivationbrain .message {
		padding-top:20px;}

/* Clients Area */

.clients {
	padding: 60px 0 40px;
	text-align: center;}

.clients img {
	display: inline-block;
	margin:0 5px}


#aboutus {
	background-image: url(img/about-usbg.jpg);
	background-size: cover;
	border-top:15px solid #F68205;
	padding: 30px 0;
	font-size: 18px;}

	#aboutus h2 {
		margin-bottom: 30px;
		font-size: 35px;}

	#aboutus .btn {
		margin-top: 60px;}

	#aboutus .row {
		position: relative;} 

#latestnews h3 {
    font-size: 20px;
    margin-top: 15px;
}

#latestnews {
	padding: 30px 0;
    font-size: 16px;}

	#latestnews ul li {
		
		margin-bottom: 6px;}
		
		#latestnews ul li a {
			line-height: 26px;
			color: #2daac5;
			text-decoration: underline;}

			#latestnews ul li a:hover {
				color:#2898B0; }

/* Social Icon */

ul.social {
	float: right;
	margin:10px 40px 10px 0;
	padding: 0;}

	ul.social li {
		display: inline-block;
		margin:0 3px;}

		ul.social li a {
			display: block;
			text-align: center;
			box-shadow: -1px 2px 4px #000;
			width: 36px;
			color: #fff;
			height: 36px;
			border:1px solid #C1C1C1;
			background: rgb(173,173,173); /* Old browsers */
			background: -moz-linear-gradient(top,  rgba(173,173,173,1) 0%, rgba(86,95,95,1) 100%); /* FF3.6+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(173,173,173,1)), color-stop(100%,rgba(86,95,95,1))); /* Chrome,Safari4+ */
			background: -webkit-linear-gradient(top,  rgba(173,173,173,1) 0%,rgba(86,95,95,1) 100%); /* Chrome10+,Safari5.1+ */
			background: -o-linear-gradient(top,  rgba(173,173,173,1) 0%,rgba(86,95,95,1) 100%); /* Opera 11.10+ */
			background: -ms-linear-gradient(top,  rgba(173,173,173,1) 0%,rgba(86,95,95,1) 100%); /* IE10+ */
			background: linear-gradient(to bottom,  rgba(173,173,173,1) 0%,rgba(86,95,95,1) 100%); /* W3C */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#adadad', endColorstr='#565f5f',GradientType=0 );
			border-radius: 50%;}
	
		ul.social li a:hover {
			opacity:.8;
			color: #fff;}

		
		#footer-home ul.social li.facebook a {
			background-color: #3C599B;}

		#footer-home ul.social li.linkedin a {
			background-color: #0077B4;}

		#footer-hom	ul.social li.twitter a {
			background-color: #00B7F3;}

		#footer-home ul.social li.rss a {
			background-color: #F99B39;}

		ul.social li a i {
			font-size: 18px;
			margin-top: 8px;}


#footer-home {
	color: #fff;
	margin-top:30px;
	min-height:200px;
	background-color: #373737; }

#footer-home a {
	color: #F68205;}

	#footer-home a:hover {
		color:#fff;}
	
	#footer-home .business-info {
		margin-top: 75px;
		width: auto;}

		#footer-home ul.social {
			margin:62px auto 0;
			float:none;}

			#footer-home ul.social li a {
				color: #fff;}

				#footer-home .textwidget {
				text-align: center;}

				#footer-home .agency {
					margin-top:15px;
					/*text-align: center;*/}
	#footer-home #search-2 {
		/*position: relative;
		top: 20px;
		left: 25%;*/
		padding-top: 20px;
	}

/* Large desktops and laptops */
@media (min-width: 1200px) {
	
	/* Override Bootstrap Container width */
	.container {
		width:990px;}
	
}
/* Portrait tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
	.container {
		width: auto;
	}
}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

	#home-threewidget-area img {
		width: 70%;}
	#search-2 {
		/*position: relative;
		left: 50%;*/
		float: right;
		clear: both;
	}
	#text-8{
		clear: both;
	}
	#text-5 h2, #text-6 h2, #text-7 h2 {
		font-size: 22px;}
	
	.new img,
	.motivationbrain img,
	.aboutus img {
	width: 100%;
	}

	#motivationbrain .message {
		padding: 15px 0 0 0;
	}
	
	ul.social {
		margin: 20px 10px 0;
	}

	.main-navigation li {
		margin: 0 12px 0 0;}
	
	ul.social li a {
		width: 30px;
		height: 30px;}

		ul.social li a i {
			font-size: 14px;
			margin-top: 6px;}
	

	
}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
	
	#home-threewidget-area img {
		width: 210px;
	}
	.motivationbrain img {
		float: left;
	}
	.new img,
	.aboutus img {
		width: 100%;
	}
	#slideshow {
		padding-bottom:40px;}
	#search-2 {
		display: none;
	}
	/*.main-navigation li {
		width: 22%;
		margin: 0 1% 0 0;
		position: relative;
	}*/

}

/* Landscape phones and smaller */
@media (max-width: 480px) {
	
	#home-threewidget-area img {
		width: 50%;}
	
	ul.social {
		float: none;
		margin: 20px auto;
		text-align: center;}	
	
		ul.social li a {
			width: 30px;
			height: 30px;}

			ul.social li a i {
				font-size: 14px;
				margin-top: 6px;}	
	
	#motivationbrain .message {
		padding-top: 0;
	}	
	
	#footer-home .business-info {
		margin-bottom: 20px;
		margin-top: 40px;
	}
	
	#slideshow {
		padding-bottom:40px;}
	
	
}