/*
Theme Name: CCCF Custom Theme
Author: DesignDesign
Author URI: http://designdesignonline.com
Description: Description
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cccf-wp-theme

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

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Header Section
	5.2 Main Nav
	5.3 Sub Nav
	5.4 Mobile
	5.5 Other
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
13.0 Footer
14.0 Sidebar
15.0 Homepage
16.0 Events
17.0 Shortcodes
18.0 Blog
50.0 Responsive
--------------------------------------------------------------*/

@import url(https://fonts.googleapis.com/css?family=Raleway:500,200);
@import url(https://use.fontawesome.com/releases/v5.9.0/css/all.css);

/*--------------------------------------------------------------
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/ */
	overflow-x: hidden;
}

*,
*:before,
*:after { /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
	-webkit-box-sizing: border-box; /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
	-moz-box-sizing:    border-box; /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
	box-sizing:         border-box;
}

body {
	background: #f1f0e9;
	position: relative;
}

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: 200;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

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

a {
	transition: all 0.5s;
	text-decoration: none;
	color: #d68a26;
}

a:hover, .content-area a, p a{
	color: #565752;
}

#content a img{
	transition: all 0.1s;
}

#content a img:hover{
	box-shadow: 0 3px 6px rgba(0,0,0,0.3);
	transition: all 0.1s;
}

#content .logos a img:hover{
	box-shadow: 0 0 0;
}

.content-area a{
	text-decoration: underline;
	color: #d68a26;
}

.content-area a:hover{
	color: #565752;
}

a:focus {
	outline-style: none;
}

a:hover,
a:active {
	outline: 0;
	transition: all 0.5s;
}

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #565752;
	letter-spacing: 1px;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 15px;
	line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Raleway', helvetica, sans-serif;
	font-weight: 200;
	text-transform: uppercase;
	line-height: 1.2em;
	margin-bottom: 16px;
}

h1 a, h2 a, h3 a{
	color: #4b7861!important;
}

h1{
	font-size: 40px;
	color: #4b7861;
	text-align: center;
}

h2{
	font-size: 26px;
	color: #4b7861;
}

h3{
	font-size: 22px;
	color: #4b7861;
}

h4{
	font-size: 20px;
}

h5{
	font-size: 18px;
}

h6{
	font-size: 16px;
}

p {
	margin-bottom: 1em;
}

b,
strong {
	font-weight: bold;
}

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

blockquote {
	padding: 0 0 0 1em;
	margin: 0 0 0 1.5em;
	font-size: 1.25em;
	line-height: 1.25em;
	border-left: 4px solid #fff;
}

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.6em;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

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

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%;
}
h1.entry-title, h1.entry-title a{
	color: #4b7861;
	margin-bottom: 40px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a{
	text-decoration: none!important;
}
h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover{
	color: #d68a26!important;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
.container{
	width: 960px;
	margin:0 auto;
}
.site-content{
	margin: 0 auto;
	padding: 80px 0;
}
hr {
	background-color: #fff;
	border: 0;
	height: 2px;
	margin: 50px 0;
}

.double-hr hr{
	background-color: transparent;
	height: 8px;
	border-top: 2px solid #fff;
	border-bottom: 2px solid #fff;
	margin: 20px 0;
}

.double-hr, .single-hr{
	position: relative;
	clear: both;
}

.leaf{
	width: 58px;
	height: 26px;
	display: block;
	background: #f1f0e9 url("img/leaf.png") no-repeat center center;
	position: absolute;
	top: -8px;
	left: 50%;
	margin-left: -29px;
}

.single-hr .leaf{
	top: -12px;
	background-size: 40%;
}

.double-hr.hdr{
	margin-bottom: 60px;
}

.wc-shortcodes-box-primary .leaf{
	background-color: #e0e0d8;
}

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

ul {
	list-style: circle;
}

ol {
	list-style: decimal;
}

li{
	margin-bottom: 1em;
}

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, .ml-responsive-table {
	margin: 0 0 1.5em;
	width: 100%;
	border: 1px solid #9ebc9b;
	border-collapse: collapse;
}

th {
	font-weight: bold;
}

th, td{
	min-width:150px;
	padding: 5px 10px;
	border: 1px solid #9ebc9b;
}

.ml-responsive-table dt{
	background-color: #c0c0b6 !important;
	color: #fff;
}

thead, .ml-responsive-table dt:first-child{
	background-color: #9ebc9b !important;
	color: #fff;
}

tr:nth-child(even), .ml-responsive-table dl:nth-child(even){
	background-color: #e0e0d8;
}

.ml-responsive-table .ml-grid{
	margin: 0;
	border: 0;
}

.ml-table{
	padding: 5px 10px;
	width: 100%!important;
}

.ml-responsive-table dd, .ml-responsive-table dt{
	margin:0;
	padding-bottom: 30px;
}



.btn, button, input[type="button"], input[type="reset"], input[type="submit"]{
	background-color: #d68a26; /* burnt orange */
	color: #fff;
	padding: 10px 20px;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	text-transform: uppercase;
	display: inline-block;
	text-align: center;
	transition: all 0.5s;
	text-decoration: none!important;
	border: 0;
	border-radius: 0;
	cursor: pointer;
	-webkit-appearance: none;
	font-size: 16px;
}
.btn{
	color: #fff!important;
}
.btn:hover, button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover{
	background-color: #e8a04b; /* light orange */
	color: #fff!important;
	transition: all 0.5s;
}

.menu-toggle:hover{
	background-color: transparent;
	color: #565752!important;
}

.clear{
	clear: both;
}

.hspace{
	display: block;
	height: 45px;
}

.content-area .anchor-link{
	color: #d68a26;
	text-decoration: none;
	font-size: 1.2em;
	margin: 0 15px;
}

.content-area .anchor-link:hover{
	color: #565752;
}

@media screen and (max-width: 720px) {
	.content-area .anchor-link{
		display: block;
	}
}

.callout-btn-wrap{
	border: 2px solid #d68a26;
	position: relative;
}

.callout-text{
	width: 70%;
	padding: 25px 15px 20px 25px;
}

.callout-text h2{
	font-size: 32px;
}

.callout-btn{
	width: 30%;
	text-align: right;
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -22px;
	padding: 0 25px 0 0;

}

@media screen and (max-width: 700px) {
	.callout-text{
		width: 100%;
		padding: 25px 25px 10px;
		text-align: center;
	}

	.callout-btn{
		width: 100%;
		text-align:center;
		position: relative;
		margin-top: 0;
		padding: 0 25px 25px;

	}
}

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

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 */
	-webkit-box-sizing: content-box; /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
	-moz-box-sizing:    content-box;
	box-sizing:         content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner { /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
	border: 0;
	padding: 0;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
	color: #565752;
	border: 1px solid #ccc;
	background-color: #fff;
	border-radius: 3px;
	padding: 8px 18px;
	width: 100%;
	box-sizing: border-box;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	vertical-align: top; /* Improves readability and alignment in all browsers */
}
#mc_embed_signup_scroll label{
	margin-left: 5px;
}

.ginput_container_textarea textarea{
	resize: vertical;
	max-height: 600px;
}
/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Header Section
--------------------------------------------------------------*/
#masthead{
	background: #fff;
	position: relative;
	z-index: 99;
}
#masthead .container{
	width: 1060px;
}
.top-header{
	border-bottom: 1px solid #dfddd4;
	margin-bottom: 5px;
	padding: 15px 0 5px;
}
.bottom-header{
	border-top: 1px solid #dfddd4;
}
.site-branding{
	float: left;
	margin-top:27px;
}
ul.menu, .menu ul{
	margin: 0;
}

.site-header .search-form{
	border: 1px solid #ccc;
	position: relative;
	padding-right: 34px;
	width: 405px;
	max-width: 100%;
	float: right;
	margin: 0 0 15px 0;
}

.site-header .search-field{
	border: 0;
	font-size: 14px;
	padding: 4px 10px;
	height: 28px;
	line-height: 1.4;
}

.site-header .search-submit{
	white-space: nowrap;
	overflow: hidden;
	text-indent: 9999px;
	width: 34px;
	height: 29px;
	padding: 0;
	background: transparent url(img/search.png) center 6px no-repeat;
	position: absolute;
	top: 0;
	right: 0;
	transition: background-color 0.5s;
}

.site-header .search-submit:hover, .site-header .search-submit:focus{
	outline: 0;
	background-position: center -34px;
	transition: background-color 0.5s;
}

.mobile-search{
	display: block;
}

.mobile-search .search-form{
	float: none;
	margin: 20px auto 0;
}

@media (min-width: 900px){
	.mobile-search{
		display: none;
	}
}

@media (min-width: 900px) and (max-width: 1110px){
	.site-branding{
		width: 380px;
		margin-top: 27px;
	}
}

/*--------------------------------------------------------------
5.2 Main Nav
--------------------------------------------------------------*/
.main-navigation a{
	padding: 23px 15px 23px 23px;
	text-transform: uppercase;
	color: #cfb017;
	font-size: 18px;
	font-family: 'Raleway', helvetica, sans-serif;
	display: block;
	height: 100%;
}
.main-navigation a .sub{
	text-transform: capitalize;
	color: #565752;
	font-size: 14px;
	letter-spacing: 0.02em;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: italic;
}
.main-navigation .menu li{
	width: 20%;
	height: 106px;
	float: left;
	border-left: 1px solid #dfddd4;
	list-style: none;
	line-height: 18px;
	margin:0;
	transition: all 0.5s;
}
.main-navigation .menu li:hover{
	background-color: #fcfcf8;
	transition: all 0.5s;
}
.main-navigation .menu li.highlight-btn{
	background-color: #e79b37; /* lighter burnt orange */
	text-align: center;
	transition: all 0.5s;
}
.main-navigation .menu li.highlight-btn:hover{
	background-color: #F2A43D; /* lighter light orange */
	transition: all 0.5s;
}
.main-navigation .menu li.highlight-btn a{
	color: #fff;
	padding: 44px 23px;
}
.main-navigation .sub-menu{
	display: none;
	background-color: #fcfcf8;
	position: relative;
	z-index: 20;
}
.main-navigation .menu li:hover .sub-menu{
	display: block;
}
.main-navigation .sub-menu li{
	width: auto;
	height: auto;
	float: none;
	border: 0;
	border-top: 1px solid #f4f4f0;
	margin:0;
	transition: all 0.5s;
}
.main-navigation .sub-menu li:hover{
	background-color: #fff;
	transition: all 0.5s;
}
.main-navigation .sub-menu a{
	color: #565752;
	font-size: 14px;
	line-height: 18px;
	padding: 15px 25px;
}

/*--------------------------------------------------------------
5.3 Sub Nav
--------------------------------------------------------------*/
.sub-navigation{
	float: right;
	padding: 8px 0 12px;
}
.sub-navigation nav{
	display: inline-block;
	margin-left: 50px;
}
.sub-navigation .menu{
	border-left: 1px solid #dfddd4;
}
.sub-navigation .menu li{
	list-style: none;
	line-height: 14px;
	margin-top:15px;
	margin-bottom:0;
}
.sub-navigation .menu a{
	margin-left: -7px;
	padding-left: 30px;
	color: #565752;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 14px;
}
.sub-navigation .menu a:hover, .sub-navigation .menu .current-menu-item a{
	background: transparent url("img/nav-circle.jpg") no-repeat left center;
}

/*--------------------------------------------------------------
5.4 Mobile
--------------------------------------------------------------*/
.mobile-navigation {
	clear: both;
	display: none;
	width: 100%;
}

.mobile-navigation .menu{
	background-color: #565752;
	text-transform: uppercase;
}

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

.mobile-navigation li{
	border-bottom: 1px solid #54554e;
	margin:0;
}

.mobile-navigation a{
	color: #fff;
	padding: 10px;
	width: 100%;
	display: block;
}

.menu-toggle {
	display: none;
	border: 0;
	background: 0;
	color: #565752;
	font-style: italic;
	font-weight: 500;
	font-size: 24px;
	text-transform: capitalize;
	margin: 10px auto;
	outline: none;
}
.menu-toggle, .menu-toggle:hover, .menu-toggle:active, .menu-toggle:focus{
	box-shadow: 0 0 0 #fff;
}
.mobile-navigation .sub-menu{
	display: block;
}
.mobile-navigation .sub-menu li{
	border: 0;
	border-top: 1px solid #65665f;
	background-color: #787974;
	margin:0;
}
.mobile-navigation .sub-menu a{
	padding: 10px 30px;
}

/*--------------------------------------------------------------
5.5 Other
--------------------------------------------------------------*/

.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%;
}

.social-menu-item{
	display: inline-block;
	font-size: 0px;
	line-height: 0;
}

.social-menu-item a::before{
	font-size: 2.5rem;
	line-height: 1;
	font-family: "Font Awesome 5 Brands";
}

.social-menu-item.facebook a::before{
	content: "\f082";
}

.social-menu-item.instagram a::before{
	content: "\f16d";
}

.social-menu-item.twitter a::before{
	content: "\f081";
}

.social-menu-item.linkedin a::before{
	content: "\f08c";
}

.social-menu-item.youtube a::before{
	content: "\f167";
}

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

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
.inline-form{
	position: relative;
}

.inline-form label{
	padding-right: 125px;
	display: block;
}

.inline-form input{
	 height: 45px;
}

.inline-form input[type="submit"]{
	position: absolute;
	top: 0;
	right: 0;
	width: 110px;
}

.error-404, .no-results{
	text-align: center;
}

.error-404 .inline-form, .no-results .inline-form{
	max-width: 775px;
	margin: 0 auto
}

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

.hentry {
	margin: 0 0 1.5em;
}

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

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

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

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.single-post .entry-meta{
	border-top: 1px solid #bcbdb8;
	border-bottom: 1px solid #bcbdb8;
	padding: 10px 0;
	margin: 50px 0 10px;
}
.single-post .entry-meta .cat-links{
	float:right;
}

/*--------------------------------------------------------------
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%;
	border: 1px solid #fff;
	padding: 10px;
}

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

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

.wp-caption .wp-caption-text {
	margin: 10px 0 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;
}

/*--------------------------------------------------------------
13.0 Footer
--------------------------------------------------------------*/
#top{
	width: 100px;
	height: 100px;
	background: #676863;
	border-radius: 100px;
	text-align: center;
	font-size: 20px;
	line-height: 20px;
	font-weight: 800;
	padding-top: 32px;
	margin: -50px auto 0;
	text-transform: uppercase;
}
#top .arrow{
	display: block;
	background-image: url("img/arrow.png");
	width: 33px;
	height: 19px;
	margin: 0px auto 15px;
}
#top a{
}
#colophon{
	background: #676863;
	color: #fff;
}
#colophon a{
	color: #fff;
}
#colophon a:hover{
	color: #dfddd4;
}
#colophon .footer-widgets{
	padding: 50px 0;
	font-size: 14px;
	line-height: 1.6;
}
#colophon .site-info{
	text-transform: uppercase;
	font-size: 12px;
	line-height: 16px;
	border-top: 1px solid #fff;
}
#colophon .site-info a{
	text-decoration: none;
}
#colophon .site-info p{
	display: block;
	float: left;
	width: 37%;
	margin: 0;
}
#colophon .site-info .copyright{
	padding: 32px 20px 20px 0;
	text-align: right;
}
#colophon .site-info .dd{
	padding: 38px 0 20px 20px;
}
#colophon .site-info .logo{
	display: block;
	float: left;
	width: 26%;
	border-left-width: 1px;
	border-right-width: 1px;
	border-color: #fff;
	border-style: solid;
	padding: 5px 20px;
	text-align: center;
}
.footer-widgets aside{
	width: 33.333%;
	float: left;
	padding: 0 35px;
	border-left: 1px solid #fff;
	height: 240px;
	position: relative;
}
.footer-widgets .widget-title{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #fff;
}
.footer-widgets ul{
	margin-left: 0;
}
.footer-widgets li{
	text-transform: uppercase;
	list-style: none;
}
.footer-circle{
	background-image: url('img/footer-circle.png');
	height: 24px;
	width: 24px;
	display: block;
	position: absolute;
	top: -1px;
	left: -12px;
}

/*--------------------------------------------------------------
15.0 Homepage
--------------------------------------------------------------*/
.home .site-content{
	padding-top: 215px;
}
.home-content{
	margin-bottom: 100px;
	text-align: center;
}
.home-col{
	width: 50%;
	float: left;
}
.home-col h2{
	text-align: center;
	color: #565752;
	margin: 0;
}
.home-col .sub-text{
	text-align: center;
	display: block;
	font-size: 20px;
    font-family: 'Raleway', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-weight: 200;
}
.home-col hr{
	margin: 15px 0;
}
.post{
	margin-bottom: 30px;
	position: relative;
}
.home-col h3{
	margin-bottom: 0;
	text-transform: capitalize;
	font-size: 20px;
}
.home-news .wrap{
	padding-top: 50px;
	padding-right: 35px;
	font-size: 16px;
}
.home-events .wrap{
	padding-top: 50px;
	padding-left: 35px;
	border-left: 2px solid #fff;
	font-size: 16px;
}
.home-events .post{
	padding-left: 80px;
}
.home-events .date, .home-events .time{
	display: block;
}
.home-events strong{
	text-transform: uppercase;
	font-weight: 800;
	font-size: 14px;
}

/*--------------------------------------------------------------
15.1 Slider Links
--------------------------------------------------------------*/

.slider-link-wrap{
	width: 75%;
	margin: 0 auto;
	position: relative;
}
.slider-link{
	text-align: center;
	width: 33.33%;
	border-top: 10px solid #fff;
	padding: 35px;
	bottom: -161px;
	position: absolute;
	z-index: 20;
}
.circle{
	color: #fff;
	width: 90px;
	height: 90px;
	margin: -85px auto 0;
	padding: 10px;
	border-radius: 100px;
}
.circle span{
	border-radius: 100px;
	border: 1px solid #fff;
	display: block;
	width: 70px;
	height: 70px;
	font-style: italic;
	font-size: 40px;
	line-height: 40px;
	padding: 15px;
	font-family: "adobe-garamond-pro", garamond, serif;
}
.slider-link .text{
	margin-top:25px;
	text-transform: uppercase;
	font-size: 26px;
	line-height: 30px;
	font-weight: 200;
	font-family: 'Raleway', Helvetica, Arial, sans-serif;
}
.slider-link .text span{
	text-transform: lowercase;
	font-style: italic;
	font-size: 24px;
}
.hover-text{
	display: none;
	transition: all 0.25s;
}
.hover-text p{
	margin: 40px 0;
	font-size: 16px;
}
.slider-link .btn{
	font-weight: 800;
}
.slider-link.first{
	border-color: #9ebc9b;
	left:0;
}
.slider-link.first .btn, .slider-link.first .circle{
	background-color: #9ebc9b;
}
.slider-link.second{
	border-color: #d68a26;
	left:33.33%;
}
.slider-link.second .btn, .slider-link.second .circle{
	background-color: #d68a26;
}
.slider-link.third{
	border-color: #4b7861;
	left:66.66%;
}
.slider-link.third .btn, .slider-link.third .circle{
	background-color: #4b7861;
}
.slider-link:hover{
	background-color: #fff;
	box-shadow: 4px 4px 4px rgba(0,0,0,0.15);
	transition: all 0.25s;
}
.slider-link:hover .hover-text{
	display: block;
	transition: all 0.25s;
}


/*--------------------------------------------------------------
16.0 Events
--------------------------------------------------------------*/
.calendar{
	width: 65px;
	height: 67px;
	background-image: url('img/calendar.png');
	position: absolute;
	top: 0;
	left: 0;
	color: #d2b525;
	text-align: center;
	padding-top: 4px;
	font-family: "adobe-garamond-pro", garamond, serif;
}
.calendar .month{
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.calendar .date{
	font-size: 40px;
	line-height: 30px;
}
.eo-events-shortcode .post{
	padding-left: 80px;
}
.entry-title-event{
	margin-bottom: 0;
	text-transform: capitalize;
	font-family: 'Raleway', helvetica, sans-serif; /* "adobe-garamond-pro", garamond, serif */
}
.eo-events-shortcode .date, .eo-events-shortcode .time{
	display: block;
}
.eo-events-shortcode strong, .event-list-header strong {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
}
.event-list-header .time, .event-list-header .venue{
	margin-left: 10px;
}
.ui-icon.ui-icon-circle-triangle-w:after{
	content: "\00ab";
}
.ui-icon.ui-icon-circle-triangle-e:after{
	content: "\00bb";
}
.fc-header .ui-state-default .ui-icon {
	background-image: none;
	font-size: 20px;
	line-height: 12px;
	margin-left: -6px;
}
.fc-header, .fc-header th, .fc-header td{
	border: 0;
}

.nav-next{
	float: right;
}
.nav-previous{
	float: left;
}
#nav-below{
	clear: both;
}

.venue-archive-address{
	text-align: center;
	font-size: 1.25em;
	font-weight: bold;
}

.tax-event-venue article.event, .tax-event-category article.event, .tax-event-tag article.event{
	max-width: 500px;
	margin: 0 auto 60px;
}

@media screen and (max-width: 525px){
	.event-list-header .date, .event-list-header .time, .event-list-header .venue{
		display: block;
		margin-left: 0;
	}
}

/*--------------------------------------------------------------
17.0 Shortcodes
--------------------------------------------------------------*/
.dec-floral{
	max-width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	height: 414px;
}
.dec-floral.alignleft, .dec-floral.alignright{
	margin-top: -30px;
}
.dec-floral-style-1{
	background-image: url("img/floral-01.png");
	width: 450px;
	height: 291px;
}
.dec-floral-style-1.alignleft, .dec-floral-style-1.alignright{
	width: 350px;
	height: 226px;
}
.dec-floral-style-1.alignleft{
  	margin-left: -100px;
}
.dec-floral-style-1.alignright{
  	margin-right: -100px;
}
.dec-floral-style-2{
	background-image: url("img/floral-02.png");
	width: 250px;
	height: 229px;
}
.dec-floral-style-2.alignleft{
  	margin-left: -140px;
	margin-top:-5px;
	margin-right:35px;
}
.dec-floral-style-2.alignright{
  	margin-right: -140px;
}
.dec-floral-style-3{
	background-image: url("img/floral-03.png");
	width: 256px;
}
.dec-floral-style-3.alignleft{
  	margin-left: -140px;
}
.dec-floral-style-3.alignright{
  	margin-right: -140px;
}
.dec-floral-style-4{
	background-image: url("img/floral-04.png");
	width: 400px;
	height: 315px;
	margin-top:80px;
}
.dec-floral-style-4.alignleft{
  	margin-left: -100px;
  	width: 250px;
  	height: 197px;
	margin-top:0;
}
.dec-floral-style-4.alignright{
  	margin-right: -140px;
  	width: 300px;
  	height: 236px;
	margin-top:0;
}
.dec-floral-style-5{
	background-image: url("img/floral-05.png");
	width: 200px;
	height: 205px;
}
.dec-floral-style-5.alignleft{
  	margin-left: -100px;
}
.dec-floral-style-5.alignright{
  	margin-right: -100px;
}
.dec-floral-style-6{
	background-image: url("img/floral-06.png");
	width: 282px;
}
.dec-floral-style-6.alignleft{
  	margin-left: -140px;
}
.dec-floral-style-6.alignright{
  	margin-right: -100px;
}
.dec-floral-style-7{
	background-image: url("img/floral-07.png");
	width: 270px;
	height: 238px;
}
.dec-floral-style-7.alignleft{
  	margin-left: -140px;
}
.dec-floral-style-7.alignright{
  	margin-right: -140px;
}

@media screen and (max-width: 720px) {
	.dec-floral.alignleft, .dec-floral.alignright{
		display:none;
	}
}


.wc-shortcodes-clearfix:before,
.wc-shortcodes-clearfix:after {
    content: "";
    display: table;
}

.wc-shortcodes-clearfix:after {
    clear: both;
}

.wc-shortcodes-clearfix {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}

/* [wc_box] */

.wc-shortcodes-box{
	padding: 30px;
}

.wc-shortcodes-box-primary{
	background-color: #e0e0d8;
}

.wc-shortcodes-box-secondary{
	border: 2px solid #d68a26;
}

.wc-shortcodes-box p:last-child, .wc-shortcodes-box p:last-child .wc-shortcodes-button{
	margin-bottom: 0;
}

/* [wc_accordion] */
.wc-shortcodes-accordion {
	margin-bottom: 20px;
}
.wc-shortcodes-accordion .wc-shortcodes-accordion-trigger {
	display: block;
	position: relative;
	padding: 0;
	border: 1px solid #D1D1CD;
	outline: 0;
	margin: 3px 0 0 0;
}
.wc-shortcodes-accordion .wc-shortcodes-accordion-trigger a {
	display: block;
	padding: 10px 20px;
	cursor: pointer;
	text-decoration: none;
}
.wc-shortcodes-font-awesome-enabled .wc-shortcodes-accordion .wc-shortcodes-accordion-trigger a {
	padding: 10px 20px 10px 40px;
	position: relative;
}
.wc-shortcodes-font-awesome-enabled .wc-shortcodes-accordion .wc-shortcodes-accordion-trigger a:before {
	font-family: FontAwesome;
	font-weight: normal;
	font-size: inherit;
	text-decoration: inherit;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* *margin-right: @spacing; */
	speak: none;
	content: "\f105";
	margin-right: 0px;
	display: inline-block;
	line-height: inherit;

	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	padding: 10px 0;
	width: 40px;
	text-align: center;
}
.wc-shortcodes-font-awesome-enabled .wc-shortcodes-accordion .wc-shortcodes-accordion-trigger a:hover:before {
	text-decoration: none;
}
.wc-shortcodes-font-awesome-enabled .wc-shortcodes-accordion .wc-shortcodes-accordion-trigger.wc-shortcodes-accordion-header-active a:before {
		content: "\f107";
}
.wc-shortcodes-accordion .wc-shortcodes-accordion-trigger:first-child {
	margin-top: 0;
}
.wc-shortcodes-accordion .wc-shortcodes-accordion-content {
	padding: 20px;
	border: 1px solid #D1D1CD;
	border-top: 0px;
	display: none;
}
.wc-shortcodes-accordion.wc-shortcodes-accordion-layout-none .wc-shortcodes-accordion-content {
	padding: 20px 0;
	border-width: 0;
}
.wc-shortcodes-accordion .wc-shortcodes-accordion-content *:last-child {
	margin-bottom: 0
}


/* [wc_toggle] */
.wc-shortcodes-toggle {
	margin-bottom: 20px;
}
.wc-shortcodes-toggle .wc-shortcodes-toggle-trigger {
	display: block;
	position: relative;
	padding: 0;
	border: 1px solid #D1D1CD;
	outline: 0;
	margin: 3px 0 0 0;
}
.wc-shortcodes-toggle .wc-shortcodes-toggle-trigger a {
	display: block;
	padding: 10px 20px;
	cursor: pointer;
	text-decoration: none;
}
.wc-shortcodes-font-awesome-enabled .wc-shortcodes-toggle .wc-shortcodes-toggle-trigger a {
	padding: 10px 20px 10px 40px;
	position: relative;
}
.wc-shortcodes-font-awesome-enabled .wc-shortcodes-toggle .wc-shortcodes-toggle-trigger a:before {
	font-family: FontAwesome;
	font-weight: normal;
	font-size: inherit;
	text-decoration: inherit;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	/* *margin-right: @spacing; */
	speak: none;
	content: "\f105";
	margin-right: 0px;
	display: inline-block;
	line-height: inherit;

	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	padding: 10px 0;
	width: 40px;
	text-align: center;
}
.wc-shortcodes-font-awesome-enabled .wc-shortcodes-toggle .wc-shortcodes-toggle-trigger a:hover:before {
	text-decoration: none;
}
.wc-shortcodes-font-awesome-enabled .wc-shortcodes-toggle .wc-shortcodes-toggle-trigger.active a:before {
	content: "\f107";
}

.wc-shortcodes-toggle .wc-shortcodes-toggle-trigger.active a {
}
.wc-shortcodes-toggle .wc-shortcodes-toggle-trigger:first-child {
	margin-top: 0;
}
.wc-shortcodes-toggle .wc-shortcodes-toggle-container {
	display: none;
	overflow: hidden;
	padding: 20px;
	border: 1px solid #D1D1CD;
	border-top: 0px;
}
.wc-shortcodes-toggle.wc-shortcodes-toggle-layout-none .wc-shortcodes-toggle-container {
	border-width: 0;
	padding: 20px 0;
}
.wc-shortcodes-toggle .wc-shortcodes-toggle-container *:last-child {
	margin-bottom: 0
}
.wc-shortcodes-toggle .anchor-link{
	margin: 0;
}


/* [wc_tabs] */
.wc-shortcodes-tabs {
	margin-bottom: 20px;
}
.wc-shortcodes-tabs ul.wcs-tabs-nav {
	display: block;
	margin: 0;
	padding: 0;
	border-bottom: solid 1px #D1D1CD;
}
.wc-shortcodes-tabs ul.wcs-tabs-nav li {
	display: block;
	width: auto;
	padding: 0;
	float: left;
	margin: 0 0 -1px 0;
	outline: none;
}
.wc-shortcodes-tabs ul.wcs-tabs-nav li a {
	display: block;
	width: auto;
	padding: 10px 20px;
	border: 1px solid #D1D1CD;
	border-width: 1px 1px 0 1px;
	margin-right: 3px;
	outline: none;
	text-decoration: none;
}
.wc-shortcodes-tabs ul.wcs-tabs-nav .wcs-state-active a {
	background-color: #ffffff;
	border-bottom-width: 0;
	border-bottom-color: transparent;
}
.wc-shortcodes-tabs .tab-content {
	background: #ffffff;
	padding: 20px;
	border-left: solid 1px #D1D1CD;
	border-right: solid 1px #D1D1CD;
	border-bottom: solid 1px #D1D1CD;
	display: none;
}
.wc-shortcodes-tabs.wc-shortcodes-tabs-layout-none .tab-content {
	padding: 20px 0;
	border-width: 0;
}
.wc-shortcodes-tabs .tab-content *:last-child {
	margin-bottom: 0
}


/* [wc_row] */
.wc-shortcodes-row {
	display: block;
	width: 100%;
}


/* [wc_column] */
.wc-shortcodes-one-half { width: 48% }
.wc-shortcodes-one-third { width: 30.66% }
.wc-shortcodes-two-third { width: 65.33% }
.wc-shortcodes-one-fourth { width: 22% }
.wc-shortcodes-three-fourth { width: 74% }
.wc-shortcodes-one-fifth { width: 16.8% }
.wc-shortcodes-two-fifth { width: 37.6% }
.wc-shortcodes-three-fifth { width: 58.4% }
.wc-shortcodes-four-fifth { width: 67.2% }
.wc-shortcodes-one-sixth { width: 13.33% }
.wc-shortcodes-five-sixth { width: 82.67% }

.wc-shortcodes-one-half,
.wc-shortcodes-one-third,
.wc-shortcodes-two-third,
.wc-shortcodes-three-fourth,
.wc-shortcodes-one-fourth,
.wc-shortcodes-one-fifth,
.wc-shortcodes-two-fifth,
.wc-shortcodes-three-fifth,
.wc-shortcodes-four-fifth,
.wc-shortcodes-one-sixth,
.wc-shortcodes-five-sixth {
	position: relative;
	margin-left: 4%;
	margin-bottom: 0;
	float: left;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-height: 1px;
}
.wc-shortcodes-column-first {
	margin-left: 0!important;
	clear: left;
}

@media (max-width: 720px) {
	body .wc-shortcodes-one-half,
	body .wc-shortcodes-one-third,
	body .wc-shortcodes-two-third,
	body .wc-shortcodes-three-fourth,
	body .wc-shortcodes-one-fourth,
	body .wc-shortcodes-one-fifth,
	body .wc-shortcodes-two-fifth,
	body .wc-shortcodes-three-fifth,
	body .wc-shortcodes-four-fifth,
	body .wc-shortcodes-one-sixth,
	body .wc-shortcodes-five-sixth {
		width: 100%;
		float: none;
		margin-left: 0;
		margin-bottom: 20px;
	}
}

/* [wc_testimonials] */
.wc-shortcodes-testimonial {
	margin-bottom: 20px;
}
.wc-shortcodes-testimonial-content {
	position: relative;
	float: left;
	background: #ffffff;
	padding: 20px;
	width: 100%;
}
.wc-shortcodes-testimonial-content:after {
	content: "";
	position: absolute;
	left: 12px;
	bottom: -15px;
	width: 0px;
	height: 0px;
	border-bottom: 15px solid rgba(255,255,255,0);
	border-top: 15px solid rgba(255,255,255,0);
	border-right: 15px solid #f1f0e9;
	font-size: 0px;
	line-height: 0px;
}
.wc-shortcodes-testimonial-content *:last-child {
	margin-bottom: 0;
	clear: both;
}
.wc-shortcodes-testimonial-author {
	float: left;
	margin-top: 20px;
	margin-left: 15px;
}
.wc-shortcodes-testimonial-right .wc-shortcodes-testimonial-content:after {
	right: 12px;
	left: auto;
	bottom: -15px;
	border-left: 15px solid #eeeeee;
	border-right-width: 0;
}
.wc-shortcodes-testimonial-right .wc-shortcodes-testimonial-author {
	float: right;
	margin-right: 15px;
	margin-left: 0;
	text-align: right;
}

/* [wc_spacing] */
.wc-shortcodes-spacing {
	display: block !important;
	height: auto;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	outline: none !important;
	background: none !important;
}

/* [wc_button] */
.wc-shortcodes-button {
	line-height: 1.3;
	margin-bottom: 20px;
	text-decoration: none!important;
	padding: 10px 20px;
	text-transform: uppercase;
	transition: all 0.5s;
	font-size: 16px;
}
p .wc-shortcodes-button{
	margin-bottom: 0;
}
.wc-shortcodes-button:visited,
.wc-shortcodes-button {
	border: none;
	text-decoration: none;
	background-color: #54415b;
	color: #fff!important;
	display: inline-block;
}

.wc-shortcodes-button:hover {
	color: #fff!important;
	background-color: #8D6B99;
	text-decoration: none;
	outline: none;
	transition: all 0.5s;
}

.wc-shortcodes-button:active {}

.wc-shortcodes-button-left {
	text-align: left;
	margin-right: 0px;
	margin-left: 0px;
}
.wc-shortcodes-button-center {
	text-align: center;
	margin-right: 0px;
	margin-left: 0px;
}
.wc-shortcodes-button-center .wc-shortcodes-button {
	margin-right: 0px;
	margin-left: 0px;
}

.wc-shortcodes-button-right {
	text-align: right;
}
.wc-shortcodes-button-right .wc-shortcodes-button {
	margin-right: 0px;
	margin-left: 10px;
}

/* [wc_googlemap] */
.googlemap {
	position: relative;
	max-width: inherit;
	margin-bottom: 20px;
	border: 1px solid #fff;
}
.googlemap .map_canvas {
	width: 100%; height: 100%;
}
.googlemap .map_canvas h3 {
	margin: 0 0 10px; font-size: 14px;
}
#page .map_canvas img {
	max-width: none;
}

/* [wc_social_icons] */
.wc-shortcodes-social-icons-wrapper {
	width: 100%;
	margin-bottom: 14px;
	line-height: 1;
}
.wc-shortcodes-social-icons {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: left;
	line-height: 1;
}
.wc-shortcodes-social-icons.wc-shortcodes-social-icons-align-center {
	text-align: center;
}
.wc-shortcodes-social-icons.wc-shortcodes-social-icons-align-center li {
	margin-right: 3px;
	margin-left: 3px;
}
.wc-shortcodes-social-icons.wc-shortcodes-social-icons-align-right {
	text-align: right;
}
.wc-shortcodes-social-icons.wc-shortcodes-social-icons-align-right li {
	margin-right: 0;
	margin-left: 6px;
}
.wc-shortcodes-social-icons.wc-shortcodes-social-icons-size-medium img {
	max-height: 24px;
}
.wc-shortcodes-social-icons.wc-shortcodes-social-icons-size-medium i {
	font-size: 14px;
	width: 24px;
	height: 24px;
	line-height: 24px;
}
.wc-shortcodes-social-icons.wc-shortcodes-social-icons-size-small img {
	max-height: 16px;
}
.wc-shortcodes-social-icons.wc-shortcodes-social-icons-size-small i {
	font-size: 10px;
	width: 16px;
	height: 16px;
	line-height: 16px;
}
.wc-shortcodes-social-icons li {
	display: inline-block;
	margin-right: 6px;
	margin-bottom: 6px;
}
.wc-shortcodes-social-icons li a {
	display: block;
	line-height: 1;
}
.wc-shortcodes-social-icons li img {
	max-height: 48px;
}
.wc-shortcodes-social-icons li i {
	font-size: 24px;
	width: 48px;
	height: 48px;
	line-height: 48px;
	overflow: hidden;
	text-align: center;
	vertical-align: middle;
	background-color: #999999;
	color: #ffffff;
}
.wc-shortcodes-social-icons li i.fa-facebook { background-color: #305999; }
.wc-shortcodes-social-icons li i.fa-google-plus { background-color: #ee7321; }
.wc-shortcodes-social-icons li i.fa-twitter { background-color: #00a7f1; }
.wc-shortcodes-social-icons li i.fa-pinterest { background-color: #d64800; }
.wc-shortcodes-social-icons li i.fa-instagram { background-color: #b2b2b4; }
.wc-shortcodes-social-icons li i.fa-plus-square { background-color: #00b5fc; }
.wc-shortcodes-social-icons li i.fa-flickr { background-color: #ff6182; }
.wc-shortcodes-social-icons li i.fa-rss { background-color: #facf4c; }
.wc-shortcodes-social-icons li i.fa-envelope { background-color: #ebe180; }
.wc-shortcodes-social-icons li i.fa-dollar { background-color: #d46000; }
.wc-shortcodes-social-icons li i.fa-camera { background-color: #333333; }
.wc-shortcodes-social-icons li i.fa-shopping-cart { background-color: #a5d488; }
.wc-shortcodes-social-icons li i.fa-youtube { background-color: #c74a00; }
.wc-shortcodes-social-icons li i.fa-tumblr { background-color: #426b8a; }

.wc-shortcodes-social-icons.wc-shortcodes-maxheight-10 img { max-height: 10px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-12 img { max-height: 12px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-14 img { max-height: 14px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-16 img { max-height: 16px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-18 img { max-height: 18px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-20 img { max-height: 20px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-22 img { max-height: 22px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-24 img { max-height: 24px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-26 img { max-height: 26px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-28 img { max-height: 28px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-30 img { max-height: 30px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-32 img { max-height: 32px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-34 img { max-height: 34px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-36 img { max-height: 36px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-38 img { max-height: 38px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-40 img { max-height: 40px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-42 img { max-height: 42px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-44 img { max-height: 44px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-46 img { max-height: 46px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-48 img { max-height: 48px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-50 img { max-height: 50px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-52 img { max-height: 52px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-54 img { max-height: 54px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-56 img { max-height: 56px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-58 img { max-height: 58px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-60 img { max-height: 60px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-62 img { max-height: 62px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-64 img { max-height: 64px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-66 img { max-height: 66px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-68 img { max-height: 68px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-70 img { max-height: 70px; }

.wc-shortcodes-social-icons.wc-shortcodes-maxheight-10 i { font-size: 6px; line-height: 10px; height: 10px; width: 10px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-12 i { font-size: 8px; line-height: 12px; height: 12px; width: 12px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-14 i { font-size: 8px; line-height: 14px; height: 14px; width: 14px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-16 i { font-size: 10px; line-height: 16px; height: 16px; width: 16px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-18 i { font-size: 10px; line-height: 18px; height: 18px; width: 18px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-20 i { font-size: 12px; line-height: 20px; height: 20px; width: 20px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-22 i { font-size: 12px; line-height: 22px; height: 22px; width: 22px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-24 i { font-size: 14px; line-height: 24px; height: 24px; width: 24px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-26 i { font-size: 14px; line-height: 26px; height: 26px; width: 26px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-28 i { font-size: 16px; line-height: 28px; height: 28px; width: 28px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-30 i { font-size: 16px; line-height: 30px; height: 30px; width: 30px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-32 i { font-size: 18px; line-height: 32px; height: 32px; width: 32px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-34 i { font-size: 18px; line-height: 34px; height: 34px; width: 34px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-36 i { font-size: 18px; line-height: 36px; height: 36px; width: 36px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-38 i { font-size: 20px; line-height: 38px; height: 38px; width: 38px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-40 i { font-size: 20px; line-height: 40px; height: 40px; width: 40px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-42 i { font-size: 22px; line-height: 42px; height: 42px; width: 42px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-44 i { font-size: 22px; line-height: 44px; height: 44px; width: 44px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-46 i { font-size: 24px; line-height: 46px; height: 46px; width: 46px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-48 i { font-size: 24px; line-height: 48px; height: 48px; width: 48px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-50 i { font-size: 26px; line-height: 50px; height: 50px; width: 50px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-52 i { font-size: 26px; line-height: 52px; height: 52px; width: 52px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-54 i { font-size: 28px; line-height: 54px; height: 54px; width: 54px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-56 i { font-size: 28px; line-height: 56px; height: 56px; width: 56px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-58 i { font-size: 30px; line-height: 58px; height: 58px; width: 58px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-60 i { font-size: 30px; line-height: 60px; height: 60px; width: 60px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-62 i { font-size: 32px; line-height: 62px; height: 62px; width: 62px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-64 i { font-size: 32px; line-height: 64px; height: 64px; width: 64px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-66 i { font-size: 34px; line-height: 66px; height: 66px; width: 66px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-68 i { font-size: 34px; line-height: 68px; height: 68px; width: 68px; }
.wc-shortcodes-social-icons.wc-shortcodes-maxheight-70 i { font-size: 36px; line-height: 70px; height: 70px; width: 70px; }

.wc-shortcodes-social-icons li:last-child {
	margin-right: 0;
}


/* [wc_share] */
.wc-shortcodes-share-buttons {
	line-height: 1;
}
.wc-shortcodes-share-buttons ul {
	list-style: none;
	margin: 0;
	padding: 0;
	line-height: 1;
}
.wc-shortcodes-share-buttons li {
	display: inline-block;
	margin-right: 7px;
}
.wc-shortcodes-share-buttons li a {
	display: block;
	line-height: 1;
}
.wc-shortcodes-share-buttons li a img {
	vertical-align: top;
	max-height: 36px;
}
.wc-shortcodes-share-buttons ul li:last-child {
	margin-right: 0;
}
.wc-shortcodes-share-buttons li i {
	font-size: 20px;
	width: 36px;
	height: 36px;
	line-height: 36px;
	overflow: hidden;
	text-align: center;
	vertical-align: top;
	background-color: #999999;
	color: #ffffff;
}
.wc-shortcodes-share-buttons-format-icon-text li span {
	margin-left: 0.4em;
}
.wc-shortcodes-share-buttons-format-text li a i {
	display: none;
}
.wc-shortcodes-share-buttons li i.fa-facebook { background-color: #305999; }
.wc-shortcodes-share-buttons li i.fa-google-plus { background-color: #ee7321; }
.wc-shortcodes-share-buttons li i.fa-twitter { background-color: #00a7f1; }
.wc-shortcodes-share-buttons li i.fa-pinterest { background-color: #d64800; }
.wc-shortcodes-share-buttons li i.fa-instagram { background-color: #b2b2b4; }
.wc-shortcodes-share-buttons li i.fa-plus-square { background-color: #00b5fc; }
.wc-shortcodes-share-buttons li i.fa-flickr { background-color: #ff6182; }
.wc-shortcodes-share-buttons li i.fa-rss { background-color: #facf4c; }
.wc-shortcodes-share-buttons li i.fa-envelope { background-color: #ebe180; }
.wc-shortcodes-share-buttons li i.fa-dollar { background-color: #d46000; }
.wc-shortcodes-share-buttons li i.fa-camera { background-color: #333333; }
.wc-shortcodes-share-buttons li i.fa-shopping-cart { background-color: #a5d488; }
.wc-shortcodes-share-buttons li i.fa-youtube { background-color: #c74a00; }
.wc-shortcodes-share-buttons li i.fa-tumblr { background-color: #426b8a; }

/* Social Media Widget */
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons {
	text-align: center;
}
.wc-shortcodes-social-icons.wc-shortcodes-columns-float-left {
	text-align: left;
}
.wc-shortcodes-social-icons.wc-shortcodes-columns-float-right {
	text-align: right;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons li {
	display: inline-block;
	padding: 3px;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons.wc-shortcodes-columns-float-left li {
	padding-right: 6px;
	padding-left: 0;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons.wc-shortcodes-columns-float-right li {
	padding-right: 0;
	padding-left: 6px;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons.wc-shortcodes-columns-8 li {
	width: 12.5%;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons.wc-shortcodes-columns-7 li {
	width: 14.28571428%;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons.wc-shortcodes-columns-6 li {
	width: 16.66666666%;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons.wc-shortcodes-columns-5 li {
	width: 20%;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons.wc-shortcodes-columns-4 li {
	width: 25%;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons.wc-shortcodes-columns-3 li {
	width: 33.33333333%;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons.wc-shortcodes-columns-2 li {
	width: 50%;
}
.widget_wc_shortcodes_social_icons .wc-shortcodes-social-icons.wc-shortcodes-columns-1 li {
	width: 100%;
}

/* Clear */
.wc-shortcodes-clear-floats{
	clear: both;
}

/*--------------------------------------------------------------
18.0 Blog
--------------------------------------------------------------*/

.meta-date, .posted-on{
	font-weight: 800;
	font-size: 14px;
}
.wp-post-image{
	margin-bottom: 35px;
	width: 100%;
}
.blog .entry-header, .archive .entry-header{
	position: relative;
	padding-left: 80px;
}
.blog h2.entry-title, .archive h2.entry-title{
	margin-bottom: 0;
	padding-top: 10px;
}
.moretag{
	display: block;
	text-align: right;
	margin: 10px 0 0;
}
.blog article, .archive article{
	margin-bottom: 60px;
}
a.moretag, .nav-links a{
	text-decoration: none;
	color: #d68a26;
	text-transform: uppercase;
}
a.moretag:hover{
	color: #565752;
}
.col-image{
	width: 33%;
	float: left;
}
.col-post-content{
	padding-left: 20px;
	width: 67%;
	float: left;
}

@media (max-width: 800px){
	.col-image, .col-post-content{
		float: none;
		width: 100%;
		padding: 0;
	}
}

/*--------------------------------------------------------------
50.0 Responsive
--------------------------------------------------------------*/
@media screen and (max-width: 1110px) {
	#masthead .container{
		width: 850px;
	}
	.container{
		width: 750px;
	}
	.main-navigation .menu li.highlight-btn a{
		padding: 43px 0;
	}
	#colophon .site-info .logo{
		width: 34%;
	}
	#colophon .site-info p{
		width: 33%;
	}
	#colophon .site-info .copyright{
		padding: 30px 20px 20px 0;
	}
	#colophon .site-info .dd{
		padding: 30px 0 20px 20px;
	}
	.footer-widgets aside{
		height: 315px;
	}
	#colophon .footer-widgets {
		padding: 50px 0;
	}
	.footer-circle{
		height: 24px;
	}
	.slider-link .text{
		font-size: 22px;
		line-height: 26px;
	}
}

@media screen and (max-width: 900px) {
	.container, #masthead .container{
		width: 100%;
		padding: 0 10px;
	}
	.site-content{
		padding: 80px 10px;
	}
	.main-navigation, .sub-navigation{
		display: none;
	}
	.mobile-navigation{
		display: block;
	}
	.mobile-navigation .nav-menu{
		height: 0;
		overflow: hidden;
	}
	.menu-toggle,
	.mobile-navigation.toggled .nav-menu {
		display: block;
		height: auto;
	}

	.mobile-navigation ul {
		display: none;
	}
	.site-branding{
		float: none;
		text-align: center;
		margin-top:5px;
	}
	#colophon .footer-widgets{
		padding-left: 15px;
	}
	.footer-widgets aside {
		height: 320px;
	}
	.slider-link-wrap{
		width: 100%;
	}
	.slider-link{
		position: relative;
		top: -10px;
		left: 0!important;
		float:left;
		background-color: #fff;
		box-shadow: 4px 4px 4px rgba(0,0,0,0.15);
	}
	.slider-link .hover-text{
		display: block;
	}
	.hover-text p {
		height: 70px;
	}
	.home .site-content{
		padding-top: 100px;
	}
}

@media screen and (max-width: 720px) {
	#colophon .footer-widgets{
		padding-left: 0;
	}
	.footer-widgets aside{
		max-width: 320px;
		float: none;
		width: 100%;
		border-left: 0;
		height: auto;
		border-top: 1px solid #fff;
		padding: 45px 0 0 0;
		margin: 45px auto 0;
	}
	.footer-widgets aside:first-child{
		border-top: 0;
		padding-top: 0;
		margin-top:0;
	}
	.footer-circle{
		left: 148px;
		top: -10px;
	}
	.footer-widgets aside:first-child .footer-circle{
		display: none;
	}
	#colophon .site-info .copyright, #colophon .site-info .logo, #colophon .site-info .dd{
		float: none;
		width: 100%;
		text-align: center;
		padding: 20px 0;
	}
	#colophon .site-info .logo{
		border: 0;
	}
	.home-col{
		width: 100%;
		float: none;
	}
	.home-col .wrap{
		padding-left: 0;
		padding-right: 0;
		border: 0;
	}
	.home-news{
		margin-bottom: 60px;
	}
	.site-branding .logo{
		max-width:300px;
	}
	.alignright, .alignleft{
		float: none;
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
	.text-center-mobile{
		text-align: center;
	}
	.slider-link{
		float: none;
		width: 100%;
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 400px) {
	.home .site-content{
		padding-top: 50px;
	}
	.mobile-none{
		display: none!important;
	}
	h1 {
		font-size: 35px;
	}

}
.grecaptcha-badge{
    box-shadow: none !important;
    width: 0 !important;
}
.hde{
	display: none;
	visibility: hidden;
}

.ft_content_container table a {
	text-decoration: underline !important;
}