/*
Theme Name: Wimple
Theme URI: http://themecountry.com/themes/wimple
Author: ThemeCountry Team
Author URI: http://themecountry.com
Description: Wimple is a really clean and fast loading WordPress theme designed specially for professional blog. With many color scheme design option to choose, Wimple is also very optimized for user reading experience and boosting advertising revenue.
Version: 1.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wimple
Tags: black, white, gray, green, orange, red, pink, theme-options, editor-style, two-columns

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.

Wimple is based on Underscores http://underscores.me/, (C) 2012-2014 Automattic, Inc.

Resetting and rebuilding styles have been helped along thanks to the fine work of
Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
and Blueprint http://www.blueprintcss.org/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
1.0 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, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: sans-serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 1.5rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 5px 10px;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: royalblue;
}

a:visited {
	color: purple;
}

a:hover,
a:focus,
a:active {
	color: midnightblue;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	/*float: left;*/
	margin: 0 auto;
	width: 100%;
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}
/*
.main-navigation ul ul li {

}

.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}
*/
.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}

/* Small menu */
.menu-toggle {
	display: none;
}
.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

.widget input.search-field {
	width: 100%;
	box-sizing: border-box;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
General Style
--------------------------------------------------------------*/
body {
	 background-color: #fff;
    color: #333;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    min-width: 1024px;
}
p {
	font-size: 16px;
  	font-size: 1.6rem;
}
input[type="button"],
input[type="submit"] {
	font-family: 'Open Sans';
	padding: 10px 20px 12px 20px;
}
button:focus, input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	outline: none;
}
a,
a:active,
a:focus,
a:visited {
	color: #81c84f;
	text-decoration: none;
	outline: none;
}
a:hover {
	color: #53aa39;
}
h1,
h2,
h3,
h4,
h5,
h6{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.1;
  color: inherit;
  clear: both;
}
h1 {
  font-size: 36px;
  margin-bottom: 0px;
}
h2 {
  font-size: 20px;
  margin-bottom: 26px;
}
h3 {
  font-size: 24px;
  margin-bottom: 22px;
}
h4 {
  font-size: 18px;
  margin-bottom: 18px;
}
h5 {
  font-size: 14px;
  margin-bottom: 16px;
}
h6 {
  font-size: 12px;
  margin-bottom: 14px;
}
blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
table, th, td {
	border: 1px solid rgba(51, 51, 51, 0.1);
}
th,
td {
	font-weight: normal;
    text-align: left;
    padding: 5px;
}
th {
	border-width: 0 1px 1px 0;
    font-weight: 700;
}
td {
	border-width: 0 1px 1px 0;
}
table {
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	margin: 0 0 1.6em;
	table-layout: fixed;
	width: 100%;
}
/* Clear Fix
------------------------*/
.clearfix:after {
 visibility: hidden;
 display: block;
 font-size: 0;
 content: " ";
 clear: both;
 height: 0;
}
.clearfix {
 display: inline-block;
}
* html .clearfix {
 height: 1%;
}
.clearfix {
 display: block;
}
/*--------------------------------------------------------------
1.0 Layout
--------------------------------------------------------------*/
.site .header-content,
.site .site-content,
.site .site-info,
.site .site-footer-widget {
	width: 980px;
	margin: 0 auto;
}
.site .site-content {
	overflow: hidden;
}

/*--------------------------------------------------------------
2.0 Header
--------------------------------------------------------------*/
.site-header {
	background: #fff;
	min-height: 60px;
}
.site-header .site-branding {
	float: left;
	width: 300px;
	padding-top: 12px;
}
.site-header .site-title {
	font-weight: bold;
	text-transform: capitalize;
	margin: 0;
}
.site-header .site-title img {
	float: left;
	max-height: 70px;
	max-width: 300px;
	margin: 5px 0;
}
.sticky .site-header .site-title img {
	max-height: 28px;
	margin: 2px 0 3px 0;
}
.site-header .site-title a:hover {
	color: #fff;
}
.site-header .site-description {
  font-size: 23px;
  color: #fff;
  margin: 0;
} 
.site-header .site-branding a {
	line-height: normal;
	color: #333;
	text-decoration: none;
}
.site-header .site-branding a:hover {
	color: #fff;
}

/*--------------------------------------------------------------
2.1 Site Navigation
--------------------------------------------------------------*/
li:hover a, a:hover {
	transition: background 0.7s ease;
}
.site-header .main-navigation {
	/*float: left;*/
	width: 900px;
	clear: none;
	margin-top: 11px;
}
.sticky .site-header .main-navigation {
	margin-top: 0;
}
.main-navigation .nav-menu {
	/*float: right;*/
}
.line-layout .main-navigation .nav-menu {
	float: left;
}
.main-navigation .nav-menu > li {
	margin-left: 1px;
}
.main-navigation .nav-menu > li > a {
	padding: 7px 20px 7px 20px;
}
.main-navigation .nav-menu  li  a {
	font-family: 'Montserrat', sans-serif;
}
.main-navigation ul ul {
	top: inherit;
	padding: 0;
	box-shadow: none;
	padding-top: 10px;
}
.main-navigation ul ul li a{
	padding: 5px 10px;
}
.main-navigation .nav-menu li a {
	display: block;
	color: #333;
	text-transform: uppercase;
	font-weight: normal;
	font-size: 16px;
}
.main-navigation .nav-menu li a:hover {
	text-decoration: none;
}
.main-navigation ul ul li {
	border-bottom: 1px solid #fff;
}
.main-navigation li:hover > a {
	color: #2980b9;
}
.main-navigation ul li:hover > ul {
	left: auto;
}
.main-navigation ul ul.sub-menu ul {
	top: 10px;
	left: 100%;
	display: none;
}
.main-navigation ul ul.sub-menu ul:before {
	border: none;
}
.main-navigation ul ul li:last-child {
	border-bottom: 0;
}
.main-navigation ul ul li:hover > ul {
	left: 100%;
	padding-left: 0;
	display: block;
}
.main-navigation ul li ul li:hover > ul {
	top: 0;
	padding-top: 0;
}
.main-navigation .nav-menu .current_page_item > a,
.main-navigation .nav-menu .current-menu-item > a,
.main-navigation .nav-menu .current_page_ancestor > a {
	color: #2980b9;
	
}
.menu-toggle-wrapper {
	display: none;
	text-align: center;
	padding-bottom: 10px;
}
.site-header .site-branding a,
.main-navigation .nav-menu li a {
	color: #fff;
}
.main-navigation .nav-menu li a span {
	display: none;
}
.main-navigation .primary-menu-container ul ul li a {
	padding-top: 5px;
}
.main-navigation .primary-menu-container ul ul:before {
	width: 10px;
	height: 10px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	content: '';
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 10px;
}
/*--------------------------------------------------------------
2.1.1 Search Box
--------------------------------------------------------------*/
.widget .search-form, .not-found .search-form {
	width: 100%;
	max-width: 300px;
	float: left;
}
.widget .search-form label, .not-found .search-form label {
	float: left !important;
	width: 76%;
}
.search-form .search-submit,
.search-form .search-submit:hover {
	padding: 13px 10px 13px 10px;
	vertical-align: top;
	margin: 0;
	box-shadow: none;
	border: none;
	color: #fff;
	border-radius: 0;
	text-shadow: none;
}
.search-form .search-field {
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	height: 40px;
	line-height: normal;
}
.widget .search-form .search-submit, .not-found .search-form .search-submit {
	display: block;
	width: 24%;
	font-size: 14px;
	height: 40px;
}

/*--------------------------------------------------------------
2.1.2 Calendar Widget
--------------------------------------------------------------*/
.widget_calendar caption {
	background: #53aa39;
	padding: 10px 20px;
	color: #fff;
}
.widget_calendar table tr th {
	background: #eee;
	text-align: center;
}
.widget_calendar table tr td {
	text-align: center;
}
.widget_calendar table tr td#prev {
	text-align: left;
	padding: 0px 10px;
}
.widget_calendar table tr td#next {
	text-align: right;
	padding: 0px 10px;
}
.widget_calendar td#prev a {
	color: #333;
}

/*************************************************************
3.0 Main Cotent
**************************************************************/
.left-content #secondary {
	float: left;
}
.left-content .floating-to-right {
	float: right;
}
.left-content .wmpro-social-sharing.social-sharing-left {
	margin-left: 50px;
}
.left-content #primary {
	float: right;
}
.left-content #primary .site-main {
	margin-left: 20px;
	margin-right: 0;
	padding: 30px 0 0 20px;
}
.page-content, 
.entry-content, 
.entry-summary {
	margin: 10px 0 0;
}
.site .content-area {
	width: 680px;
	float: left;
	padding-top: 10px;
}
.site .no-sidebar-content .content-area {
	width: 100%;
	margin: 0;
	padding: 0;
}
.site .no-sidebar-content .content-area .site-main {
	width: 100%;
	margin: 0;
	padding-right: 0;
}
.site .one-column .entry-content {
	border: none;
}
.site .one-column .entry .post-excerpt {
	float: none;
	width: 100%;
}
.site .content-area.one-column {
	width: 100%;
}
.site .content-area .site-main {
	margin-right: 20px;
	padding-right: 20px;
}
#crumbs a {
	font-size: 15px;
	color: #ababab;
}
#crumbs span {
	font-size: 15px;
	color: #cbcbcb;
}
.site .widget-area {
	width: 300px;
	float: right;
	padding-top: 30px;
	font-size: 17px;
}
.widget_archive select {
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
}
.widget-area .banner-125 ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.widget-area .banner-125 ul li {
	margin: 10px 25px 10px 0;
}
.widget-area .banner-125 ul li.even-banner {
	margin: 10px 0 10px 0;
}
.page .entry-title,
.single-post .entry-title {
	font-size: 22px;
	font-weight: bold;
	margin: 4px 0 10px 0;
}
.archive .page-title, .search .page-title {
	margin-bottom: 20px;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: bold;
	font-family: 'Montserrat', sans-serif;
}
.type-page {
	border-bottom: 0;
}
.entry-title a {
	color: #333;
	word-wrap: break-word;
	font-weight: 700;
	font-family: 'Montserrat', sans-serif;
}
.entry-meta {
	margin-top: 25px;
	line-height: 1;
	font-size: 15px;
}
.entry-meta-fix{
	margin-top: 0;
	font-size: 15px;
	display: block;
	text-align: right;
}
.entry-meta-fix .posted-on{
	float: none !important;
}
.entry-content {
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}
.page-content, 
.entry-content, 
.entry-summary {
	word-wrap: break-word;
}
.entry .post-thumbnail{
	float: left;
	width: 260px;
	padding-top: 5px;
}
.entry .post-excerpt {
	float: right;
	width: 360px;
}
.entry-content > ol{
	margin: 0 0 24px 30px;
}
.entry-content ul {
	margin: 0 0 24px 22px;
}
.entry-title {
	text-transform: capitalize;
	margin-bottom: 10px;
}
.entry-title a:hover {
	text-decoration: none;
	color: #53aa39;
}
.entry-meta .posted-on,
.entry-meta .byline,
.entry-meta .cat-links,
.entry-meta .comments-link,
.entry-meta .edit-link,
.entry-meta .tags-links,
.entry-footer {
	/*color: #cbcbcb;*/
	color: #777777;
} 
.entry-meta .cat-links,
.entry-meta .comments-link,
.entry-meta .edit-link {
	padding-left: 5px;
}



.entry-meta .posted-on{
	float: right;
}


.entry-footer a,
.entry-meta a {
	/*color: #ababab;*/
	color: #777777 !important;
}
.entry-footer a:hover, 
.entry-meta a:hover {
	color: #53aa39 !important;
}
.entry-footer .edit-link{
	padding-left: 10px;
}
.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
	font-size: 0.9em;
	font-style: italic;
	color: #666;
}
.gallery-caption {
	font-style: italic;
	color: #666;
	margin-bottom: 15px;
}
.gallery-item .gallery-icon{
	padding: 5px;
}
section.error-404.not-found {
	float: left;
	padding-bottom: 20px;
}

/*--------------------------------------------------------------
Widget Area
--------------------------------------------------------------*/
.widget-title {
	font-size: 18px;
	margin-bottom: 7px;
	padding: 3px 10px 3px 0;
	font-weight: 600;
	color: #333333;
	line-height: 1.5;
	text-transform: uppercase;
	border-bottom: 1px solid #eee;
	font-family: 'Montserrat', sans-serif;
}
.widget > ul {
	list-style: square;
	margin: 0 0 0 20px;
}
.widget > ul > li, {
	word-wrap: break-word;
	padding: 3px 0;
}
.widget > ul > li a {
	color: #666;
}
.widget > ul > li a:hover {
	text-decoration: none;
	color: #53aa39;
}
.widget-title {
	margin: 7px 0;
	font-weight: normal;
}
.menu-toggle, .main-navigation.toggled .nav-menu {
	padding-bottom: 0;
}
.more-link {
	margin-top: -15px;
}


/**
 * Sidebar Widget List
 */
.widget {
	width: 100%;
	margin-bottom: 20px;
	display: inline-block;
}
.widget.widget_search {
	margin-top: 10px;
}
.widget ul {
	list-style: none;
	margin: 0 0 20px 0;
 }
 .widget ul.tc-sidebar-widget.no-thumbnail {
	list-style: square;
	margin: 0 0 20px 20px;
 }
.widget .primary-menu-container ul li:last-child {
	padding-bottom: 0;
}
.widget .primary-menu-container ul.menu li {
	list-style: square;
}
.widget .tc-sidebar-widget li,
.site-footer .site-footer-widget li {
	width: 100%;
	margin-bottom: 10px;
	clear: both;
	color: #333;
}
.widget .tc-sidebar-widget li.menu-item-has-children,
.site-footer .site-footer-widget li.menu-item-has-children {
	width: auto;
}
.widget .tc-sidebar-widget li .post-img,
.site-footer .site-footer-widget li .post-img {
	width: 100px;
	max-height: 80px;
	float: left !important;
	margin: 6px 15px 14px 0;
}
.widget .tc-sidebar-widget li.no-thumbnail,
.site-footer .site-footer-widget li.no-thumbnail,
.widget_pages li, .widget_archive li, .widget_recent_comments li, .widget_nav_menu li, .widget_meta li,
.widget_recent_entries li, .widget_categories li, .widget_nav_menu li {
	list-style: square;
	margin-left: 20px;
}
.widget .tc-sidebar-widget li.no-thumbnail .post-img,
.site-footer .site-footer-widget li.no-thumbnail .post-img {
	display: none;
}
.widget .tc-sidebar-widget li p,
.site-footer .site-footer-widget li p,
.widget .tc-sidebar-widget li a,
.site-footer .site-footer-widget li a {
	margin-bottom: 0;
	line-height: normal;
	font-size: 16px;
}
.widget ul.tc-sidebar-widget li .recent-post-meta,
.site-footer-widget .f-widget ul li .recent-post-meta,
.widget ul.tc-sidebar-widget li .popular-post-meta,
.site-footer-widget .f-widget ul li .popular-post-meta {
	color: #cccccc;
	line-height: normal;
}
.widget_nav_menu .primary-menu-container ul li li:last-child {
	padding: 0;
}

/**
 * Comment
 */
.comments-area {
	border-top: 1px solid #eee;
	padding-top: 20px;
}
.comments-title {
	padding-bottom: 20px;
}
.comment-list {
	padding: 0;
	margin: 0;
	list-style: none;
}
.comment-list ol {
	list-style: none;
}
.comment-list > .comment { 
	border-bottom: 1px solid #eee;
	margin-bottom: 20px;
}
.comment-body {
	margin-bottom: 20px;
}
.comment-content {
	clear: left;
	padding-top: 10px;
}
.comment-content ul {
	margin-bottom: 0;
}
.comment-meta {
	color: #cbcbcb;
	font-size: 0.9em;
}
.comment-meta a {
	color: #ababab;
}
.comment-meta .vcard img{
	float: left;
	padding-right: 10px;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-url label {
	float: left;
	width: 100px;
}
.comment-form button, 
.comment-form input, 
.comment-form select, 
.comment-form textarea {
	font-size: 16px;
}

/**
 * Nav Button
 */
.nav-previous a:active,
.nav-next a:active {
	border-bottom: 0;
}
.more-link {
	display: inline-block;
	padding: 3px 10px;
	float: right;
	color: #fff;
	text-transform: capitalize;
	font-size: 14px;
	margin-top: -23px;
	position: relative;
	z-index: 10;
}
.more-link:visited {
	color: #fff;
}

/***************************************************
 * Footer
****************************************************/
 .site-footer {
	color: #666;
	width: 100%;
	padding: 0;
	line-height: normal;
}
.site-footer {
	font-size: 14px;
}
.f-widget ul li a,
.f-widget ul li a:active,
.f-widget ul li a:visited {
	color: #333333;
}
.site-footer-widget {
	padding: 25px 0 10px 0;
}
.site-footer-widget a:hover {

}
.site-footer-widget .col-left {
	float: left;
	width: 46%;
	color: #fff;
	margin-right: 6%;
}
.site-footer-widget .col-right {
	float: left;
	width: 46%;
	color: #fff;
	margin-right: 2%;
}
.site-footer-widget .footer-col-1,
.site-footer-widget .footer-col-2,
.site-footer-widget .footer-col-3 {
	float: left;
	position: relative;
	text-align: left;
	width: 30%;
	margin-right: 3.3333%;
}
.site-footer-widget .footer-col-3 {
	margin-right: 0;
}
.footer-col-3 p {
	font-size: 16px;
	line-height: 1.7;
}
.widget_tag_cloud {
	margin-bottom: 20px;
}
.site-footer-widget .f-widget {
	width: 100%;
	color: #ffffff;
	margin-bottom: 20px;
}
.site-footer-widget .widget_calendar {
	color: #333333;
}
.site-footer-widget .tc_pinterest_profile_widget {
	margin-bottom: 20px;
}
#secondary .tc_pinterest_profile_widget {
	margin-bottom: 30px;
	text-align: center;
}
#secondary .tc_pinterest_profile_widget h2 {
	margin-bottom: 20px;
	text-align: left;
}


.site-footer-widget .widget-title {
	background: none;
	margin: 0 0 3px 0;
	padding: 0 25px 5px 0;
	text-transform: capitalize;
	border: none;
}
.site-footer-widget .f-widget ul {
	margin: 0;
	padding: 0 30px 0 0;
	list-style: none;
}
.site-footer-widget .textwidget p {
	margin: 0;
	padding: 0;
}
.site-footer-widget .footer-col-3 .textwidget img {
	float: left;
	margin: 0 15px 0 0;
}
#page .site-footer {
	background: #f6f6f6;
}
.site-footer .textwidget {
	color: #333333;
	font-size: 16px;
}
.site-footer .widget_text {
	margin-bottom: 20px;
}
.wrap-site-info {
	background: #ffffff;
	padding: 15px 0;
	border-top: 1px solid #eeeeee;
}
.site-info {
	font-size: 14px;
}
.site-info .copyright {
	float: left;
	width: 40%;
	text-align: left;
	font-size: 0.9em;
}
.site-footer .site-info a {
	color: #ffffff;
}
.site-info .theme-info {
	/*float: left;*/
	width: 410px;
	margin: 0 auto;
	padding: 0;
	font-size: 14px;
}
.theme-author {
	text-align: center;
	color: #ffffff;
}
.site-info .theme-info  span.sep {
	font-size: 13px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	color: #ffffff;
}
.site-info .theme-info p {
	margin: 0;
	padding: 0;
	font-size: 14px;
}
.site-info .footer-menu {
	float: left;
	width: 40%;
}
.site-info .menu-footer-menu-container {
	text-align: right;
}
.site-info .footer-menu ul {
	margin: 0;
	padding: 0;
}
.site-info .footer-menu ul li {
	display: inline;
}
.site-info .footer-menu ul li:first-child {
	border: none;
}
.site-info .footer-menu ul li a {
	padding: 0 8px 0 10px;
	color: #ffffff;
	line-height: 12px;
	display: inline-block;
	border-left: 1px solid #ffffff;
}
.site-info .footer-menu ul li:first-child a {
	border: none;
	padding-left: 0;
}
.site-info .footer-menu ul li.menu-item-home a {
	border-left: none;
}

/*--------------------------------------------------------------
Pagination Blog
--------------------------------------------------------------*/
.scroll-loading {
 	width: 100%;
 	text-align: center;
 	  margin-bottom: 20px;
 	  display: none;
}
.scroll-loading img {
	width: 100px;
	height: auto;
}
.wrap-site-info,
.site-header,
.more-link,
.site-footer,
.pagination a {
	color: #fff;
}
.main-navigation .nav-menu li a:hover,
.more-link:hover,
.page-numbers.current,
.pagination a:hover {
	color: #fff;
}
.main-navigation .nav-menu .current_page_item > a, 
.main-navigation .nav-menu .current-menu-item > a, 
.main-navigation .nav-menu .current_page_ancestor > a {
	color: #fff;
	background: #53aa39;
}
.main-navigation li {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-size: 16px;
}
.nav-previous a,
.nav-next a,
.page-numbers
{
	color: #81c84f;
	display: inline-block;
	padding: 4px 10px;
	text-transform: capitalize;
}
.nav-previous a:hover,
.nav-next a:hover,
p.bjqs-caption a:hover {
	color: #53aa39;
}
.blog .nav-previous a,
.blog .nav-next a {
	background: #81c84f;
	color: #fff;
	font-size: 14px;
}
.blog .nav-previous a:hover,
.blog .nav-next a:hover {
	transition: background 0.7s ease;
}
.pagination a, .pagination a:active, .pagination a:focus, .pagination a:visited {
	outline: none;
	color: #fff;
	font-size: 14px;
}
nav.navigation.pagination {
	padding: 0px 0 50px 0;
	text-align: center;
}
.prev.page-numbers {
	padding: 6px 10px;
	color: #ffffff;
}
.page-numbers {
	padding: 6px 10px;
	color: #ffffff;
}
span.page-numbers.dots {
	padding: 3px 3px;
	color: #53AA39;
}
span.page-numbers.current {
	padding: 6px 10px;
	font-size: 14px;
}
#load-more-wrap {
	width: 100%;
	background: #FCFCFC;
	border-radius: 4px;
	text-align: center;
	border: 1px solid #53aa39;
	margin: 50px 0;
}



#respond .form-allowed-tags {
	clear: both;
	width: 98%;
}
#respond .form-allowed-tags code {
	display: block;
}
.form-allowed-tags {
 	display: none;
}

.breadcrumbs{
	margin: 30px 0;
}

.link-555, .link-555:VISITED, .color-555{
	color: #555;
}

.breadcrumbs a, .breadcrumbs a:VISITED, .link-777, .link-777:VISITED, .color-777{
	color: #777;
}

.textwidget a,  .textwidget a:VISITED{
	color: #fff;
}


.breadcrumbs a:hover, .textwidget a:hover, .link-777:hover, .link-555:hover{
	color: #53aa39;
}


.fa-home{
	color: #777;
}

.span-header{
	padding: 3px 10px;
	display: inline-block;
	min-height: 0;
	font-size: 15px;
}
.clear{
	clear: both;
}

.index-ul{
	margin: 0 0 18px 18px;
}

.h-10{
	height: 10px;
}

.h-20{
	height: 20px;
}