/*
Theme Name: Integrity Candles 2019
Description: Integrity Candles 2019
Author: NTech Media
Author URI: http://ntechmedia.com


	Base Theme Name: HTML5 Blank
	Base Theme URI: http://html5blank.com
	Base Description: HTML5 Blank WordPress Theme
	Base Version: 1.4.2
	Base Author: Todd Motto (@toddmotto)
	Base Author URI: http://toddmotto.com
	Base Tags: Blank, HTML5, CSS3
	
	Base License: MIT
	Base License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
/* Disabling due to issues, and because HTML5 Boilerplate made the same change */
/* for similar reasons 4 years ago and still hasn't added it back in yet */
/* https://github.com/h5bp/html5-boilerplate/commit/0d7f8d775ab4ab171c6372f992d506088ca5d3ed */
/* http://aestheticallyloyal.com/public/optimize-legibility/ */
/*	text-rendering:optimizeLegibility; */
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font: 300 19px/1.4 'Open Sans', Helvetica, Arial, sans-serif;
	letter-spacing: 0.025em;
	color:#444;
	background: #dbd4cd;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
	height: auto;
}
a {
	color:#444;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

h1, h2, h3, h4 {
	font-weight: 300;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	display: flex;
	margin: 0 auto;
	position: relative;
	max-width: 1280px;
	padding: 0px 20px;
	min-height: calc(100vh - 500px);
	flex-direction: column;
}
/* header */
.header_wrapper {
	background: #333333;
}

.header {
	display: block;
	margin: 0px auto;
	position: absolute;
	width: 100%;
	background: rgba(0,0,0,0.3);
	z-index: 10;
	text-align: center;
}

.home .header {
	background: rgba(0,0,0,0.7);
}

/* logo */
.logo {
	text-align: center;
	position: relative;
	z-index: 10;
	margin: 20px auto;
	display: inline-block
}
.logo-img {
	
}
/* nav */
.nav {
	border-top: 2px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
	position: relative;
/*	background: rgba(0,0,0,0.75);*/
	z-index: 1;
}

.nav > ul {
	max-width: 1280px;
}

.nav ul,
.nav_spacer ul {
	display: flex;
	list-style: none;
	padding: 0px;
	margin: 0px auto;
	justify-content: space-between;
}

.nav li {
}

.nav li a,
.nav_spacer li a {
	color: #FFFFFF;
	font-size: 21px;
	height: 45px;
	line-height: 45px;
	display: block;
	text-decoration: none;
	white-space: nowrap;
/*	padding: 0px 10px;*/
}

.nav li a i {
	font-size: 14px;
	visibility: hidden;
}

.nav li:hover a i {
	visibility: visible;
}

.nav ul.sub-menu,
.nav_spacer ul.sub-menu {
	display: none;
	position: absolute;
	top: 45px;
	left: 0px;
	width: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 2;
	border-top: 2px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
	transition: all 1s;
}

.nav li:hover > .sub-menu {
/*	display: block; */
}

.nav_spacer {
	height: 0px;
	overflow: hidden;
}

.sub-items-wrap {
	max-width: 1280px;
	margin: 0px auto;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}

.sub-items-wrap::after {
	content: "";
	flex: auto;
}

.nav ul.sub-menu li {
	width: 32%;
	padding: 10px 0px;
	margin-right: 2%;
}

.nav ul.sub-menu li:nth-child(3n) {
	margin-right: 0px;
}


.nav ul.sub-menu li a {
	position: relative;
	display: block;
	height: auto;
	background-size: auto 100%;
	background-position: center;
	transition: 0.2s all;
}

.nav ul.sub-menu li a:hover {
	background-size: auto 110%;
}


.nav ul.sub-menu li a span {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: rgba(0,0,0,0.75);
}

.nav ul.sub-menu li.hidenavtitle a span {
	display: none;
}

.mobile_nav_bar {
	display: none;
	cursor: pointer;
/*	position: relative; */
}

.mobile_nav_bar .touchbar {
	flex: 1;
}

#mobile_nav_icon {
	width: 30px;
	height: 30px;
	position: relative;
	margin: 9px 20px 10px;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	z-index: 20;
}

#mobile_nav_icon span {
	display: block;
	position: absolute;
	height: 3px;
	width: 100%;
	background: #FFFFFF;
	border-radius: 3px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

.mobile_nav_bar:hover #mobile_nav_icon span,
#mobile_nav_icon.open span {
	background: #999999;
}


#mobile_nav_icon span:nth-child(1) {
	top: 3px;
}

#mobile_nav_icon span:nth-child(2),#mobile_nav_icon span:nth-child(3) {
	top: 12px;
}

#mobile_nav_icon span:nth-child(4) {
	top: 21px;
}

#mobile_nav_icon.open span:nth-child(1) {
	top: 12px;
	width: 0%;
	left: 50%;
}

#mobile_nav_icon.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

#mobile_nav_icon.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

#mobile_nav_icon.open span:nth-child(4) {
	top: 12px;
	width: 0%;
	left: 50%;
}

.mobilenav {
	display:none;
	position: absolute;
	top: 135px;
	background: rgba(255,255,255,0.95);
	width: 100%;
	padding-top: 0px;
	z-index: 2;
}

.mobilenav ul {
	margin: 0px auto;
	padding: 0px 0px 0px 0px;
}

.mobilenav ul li {
	position: relative;
}

.mobilenav ul li a {
	display: block;
	line-height: 22px;
	padding: 10px 10px;
	font-weight: 700;
	font-size: 14px;
	color: #333333;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none;
}


.mobilenav ul li:hover a {
	text-decoration: none;
}

.mobilenav ul.sub-menu {
	display: none;
}

.mobilenav ul.sub-menu li a {
	width: 150px;
	height: 150px;
	padding: 0px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: #FFFFFF;
	font-size: 12px;
	position: relative;
}

.mobilenav ul.sub-menu .sub-items-wrap {
	justify-content: center;
	width: 360px;
}

.mobilenav ul.sub-menu .sub-items-wrap::after {
	content: normal;
}

.mobilenav ul.sub-menu .sub-items-wrap li {
	padding: 5px;
}

.mobilenav ul.sub-menu li a span {
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 40px;
	line-height: 40px;
	text-align: center;
	background: rgba(0,0,0,0.75);
}



.touchbar {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

/* main content */
section[role=main] {
	display: block;
	width: 100%;
	z-index: 0;
}
/* sidebar */
.sidebar {
	display: block;
}

.sidebar-widget {
	min-width: 280px;
	flex: 1;
}
/* footer */
.footer_wrapper {
	background: rgba(0,0,0,0.8);	
}


.footer {
	display: block;
	margin: 0px auto;
	max-width: 1240px;
	color: #FFFFFF;
	padding: 0px 20px;
}

.footer_widgets {
	display: flex;
	justify-content: space-between;
}

.footer .menu {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.footer .menu a {
	color: #A3A3A3;
}

.footer .menu a:hover {
	color: #FFFFFF;
}


#menu-social-media a {
	line-height: 15px;
}

#menu-social-media li {
	display: flex;
	align-items: center;
}

#menu-social-media li::before {
	font-family: "Font Awesome 5 Brands";
	color: #A3A3A3;
	text-decoration: none;
	padding-right: 10px;
}

#menu-social-media li:hover::before {
	color: #FFFFFF;
}


.menu_ig::before {
	content: "\f16d";
}

.menu_fb::before {
	content: "\f082";
}

.menu_pi::before {
	content: "\f0d3";
}

.menu_nrnsw a {
	background: url(img/nrnsw.png) no-repeat center / 100% auto;
	font-size: 0px;
	display: block;
	width: 250px;
	height: 100px;
	text-decoration: none;
	margin-top: 40px;
}


.copyright {
	display: flex;
	justify-content: space-between;
	padding: 15px 0px 5px;
	font-size: 14px;
}

.copyright a {
	color: #FFFFFF;
}

@media screen and (max-width: 960px) {
	.footer_widgets,
	.copyright {
		justify-content: center;
		flex-wrap: wrap;
	}
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/

.header_wrapper .slider {
/*	height: 184px;*/
	background: url(img/banner_wide.jpg) no-repeat center / cover;
}

.slider .banner_bg {
	background-position: center;
	background-size: cover;
	min-height: 184px;
}

.home .header .slider {
	height: 100vh;
	width: 100%;
	top: 0px;
	left: 0px;
}

.home .slider .slide {
	min-height: 100vh;
	background-size: cover;
	background-position: center;
}

.home .wrapper {
/*	display: none;*/
	position: absolute;
	top: 184px;
	height: calc(100vh - 184px);
	width: 100%;
	max-width: 100%;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,0.5);
}

.home .wrapper.no_splash {
	display: none;
}

.wp-block-button__link {
	font-weight: 700;
	border-radius: 3px;
	background-color: #ebe9eb;
	color: #515151;
	font-size: 100%;
}

.wp-block-button {
	color: #515151;
}

.home .wrapper section[role="main"] {
	text-align: center;
	height: 100vh;
	min-height: 200px;
	max-height: calc(100vh - 400px); /*500px;*/
	width: 100%;
	max-width: 1280px;
	margin: 0px auto;
	display: flex;
}

.home .wrapper section[role="main"] {
	max-width: none;
	justify-content: center;
	align-items: center;
	max-width: calc(177.778vh);
/*	height: calc(56.25vw);*/
	margin: 75px 0px;
}




.splash_video {
	height: 100vh;
	min-height: 200px;
	max-height: calc(100vh - 400px); /*500px;*/
	max-height: calc(100vh - 100px);
	width: 100%;
	max-width: 960px;
	margin: 0px auto;
}

.splash_video {
/*	max-height: calc(30vh);*/
	width: 100%;
/*	max-width: 960px;*/
	margin: 0px;
/*	max-width: calc(177.778vh);*/
	height: calc(56.25vw);
}

.home .wrapper section[role="main"] {
	max-height: none;
	max-width: none;
	align-items: flex-start;
	
}

.home_wrapper {

}

.splash_message {
	display: block;
	height: 100%;
	max-height: none;
	max-width: none;
}

.home_message {
	align-items: flex-start;
}

.close_video {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.close_video {
/*	margin-bottom: calc(30vh);*/
	align-self: flex-start;
}

.close_video span {
	height: 3px;
	border-radius: 3px;
	width: 100%;
	background: #FFFFFF;
	position: absolute;
	display: block;
	top: 15px;
}

.close_video span:nth-child(1) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close_video span:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.force_mobile .nav {
	display: none;
}

.force_mobile .mobile_nav_bar {
	align-self: center;
	flex-grow: 1;
	display: flex;
	justify-content: flex-end;
	z-index: 15;
}

.gform_wrapper ul.gform_fields li.gfield.callus_captcha {
	margin-top: 68px;
}

@media screen and (max-width:960px){
	
	.home .wrapper {
		top: 135px;
		height: calc(100vh - 135px);
	}
	
	.logo {
		padding-left: 20px;
	}

	.mobile_nav_bar {
		align-self: center;
		flex-grow: 1;
		display: flex;
		justify-content: flex-end;
	/*	padding-top: 35px;*/
		z-index: 15;
	}
	
	.header {
		display: flex;
	}
	
	.nav {
		display: none;
	}
}


/*------------------------------------*\
    WOOCOMMERCE
\*------------------------------------*/

.header_cart_wrapper {
	position: absolute;
	z-index: 1;
	top: 0px;
	width: 100%;
	max-width: 1280px;
	left: 0px;
	right: 0px;
	margin: 0px auto;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.header_cart {
	color: #FFFFFF;
	display: flex;
	background: rgba(0,0,0,0.4);
	padding: 10px;
}

.header_cart p {
	margin: 0px;
}

.cart_items a {
	padding: 0px 10px;
	text-decoration: none;
	color: #FFFFFF;
}

.woocommerce-mini-cart__buttons {
	padding-left: 10px;
}

.woocommerce-mini-cart__buttons a {
	display: none;
	color: #FFFFFF;
	font-weight: bold;
}

.woocommerce .woocommerce-mini-cart__buttons a {
 	padding: 0px;
	background: none;
	text-decoration: underline;
	display: none;
	color: #FFFFFF;
}


.woocommerce-mini-cart__buttons a.checkout {
	display: inline-block;
}

.woocommerce-mini-cart.cart_list {
	display: none;
}

.woocommerce-mini-cart__total {
	display: none;
}

.header_socials {
	background: rgba(0,0,0,0.4);
	padding: 6px 10px 6px 0px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header_socials::before {
	content: ' ';
	border-left: 3px solid #FFFFFF;
	height: 30px;
	padding-right: 10px;
}

.header_socials a {
	color: #FFFFFF;
	padding: 5px;
	font-size: 24px;
	line-height: 20px;	
}

.single-product-cross {
/*	overflow-y: scroll;
	height: 320px;
*/
}

.related.products {
	clear: both;
}

.wc-block-grid__product-title,
.wc-block-grid.has-4-columns:not(.alignwide):not(.alignfull) .wc-block-grid__product, .wc-block-grid.has-5-columns:not(.alignfull) .wc-block-grid__product, .wc-block-grid.has-6-columns:not(.alignfull) .wc-block-grid__product, .wc-block-grid.has-7-columns .wc-block-grid__product, .wc-block-grid.has-8-columns .wc-block-grid__product {
	font-size: 1em;
}

.wc-block-grid__product {
	text-align: left;
}

.wc-block-grid__product-price.price {
	font-size: 0.857em;
	color: #77a464;
	font-weight: 400;
}

.wp-block-button__link.add_to_cart_button {
	margin-top: 1em;
}

.cat_footer {
	display: none;
}

.page-template-template-footer .wrapper {
	min-height: 0px;
}

.page-template-template-footer .cat_footer {
	display: block;
	min-height: 1024px;
	background-size: cover;
	background-position: center;
}

.cat_footer_fade {
	height: 20px;
	background: rgb(219, 212, 205);
	background: linear-gradient(0deg, rgba(319, 312, 305, 0) 0%, rgba(219, 212, 205, 1) 100%);
}

.mobile_cart_wrapper {
	display: none;
}

.mobile_cart_wrapper .header_cart {
	color: #333333;
	width: 100%;
	justify-content: center;
	font-size: 14px;
}

.mobile_cart_wrapper .header_socials a,
.mobile_cart_wrapper .cart_items a {
	color: #333333;
}

.mobile_cart_wrapper .header_socials a {
	font-size: 18px;
}

.variations select {
	width: 100%;
}

span.onsale {
	display: none;
}

.wooco_components .wooco_component_required .wooco_component_name::after {
	content: '';
}

.woocommerce ul.products li.product.product-type-composite .price {
	display: none;
}

.product-type-composite .price .woocommerce-price-suffix,
.product-type-composite .wooco-total .woocommerce-price-suffix {
	display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs.wc-tabs {
	display: none;
}

.stock.available-on-backorder {
	font-weight: bold;
	display: block;
	background: #f7f7f7;
	border-top: 3px solid #8fae1b;
	padding: 1em;
}

.backorder_notification {
	font-weight: bold;
	background: #f7f7f7;
	padding: 0.5em 1em;
}

.stock.available-on-backorder::before,
.backorder_notification::before {
	content: 'Not currently in stock. ';
}

@media screen and (max-width: 960px) {
	.header_cart_wrapper {
		top: 135px;
		background: rgba(0,0,0,0.4);
		flex-direction: row-reverse;
	}

	.header_socials::before {
		display: none;
	}

	.header_socials::after {
		content: ' ';
		border-right: 3px solid #FFFFFF;
		height: 30px;
		padding-left: 10px;
	}
	
	.header_cart,
	.header_socials {
		background: none;
	}
	
	.header_cart {
		padding: 11px;
	}
}

@media screen and (max-width: 640px) {
	.header_cart_wrapper {
		display: none;
	}

	.mobile_cart_wrapper {
		display: flex;
		flex-wrap: wrap;
		margin-top: 10px;
		border-top: 1px solid #CCCCCC;
	}

	.mobile_cart_wrapper .header_socials {
		justify-content: center;
		width: 100%;
	} 

	.mobile_cart_wrapper .header_socials::before {
		content: ' ';
		display: inlinee-block;
		border-left: 3px solid #333333;
		height: 30px;
		padding-right: 10px;
	}

	.mobile_cart_wrapper .header_socials::after {
		display: none;
	}

}

.clear {
	display: block;
}

.gcw-caption {
	padding: 20px 30px;
	background: rgba(0,0,0,0.75);
	color: #FFFFFF;
}

.gcw-caption h5 {
	margin: 0px;
	font-weight: 300;
}

.gcw-caption p {
	display: none;
}

.page-template-template-blank .header_wrapper, 
.page-template-template-blank .footer_wrapper {
	display: none;
}

.page-template-template-blank .wrapper {
	padding: 0px;
}

.home_message {
	height: 100vh;
}

/*------------------------------------*\
 *
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Bembo-Book';
	src:url('fonts/bembo-book.eot');
	src:url('fonts/bembo-book.eot?#iefix') format('embedded-opentype'),
		url('fonts/bembo-book.woff') format('woff'),
		url('fonts/bembo-book.ttf') format('truetype'),
		url('fonts/bembo-book.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

div.shiftnav-wrap {
	line-height: 1.4; /* Fixes ShiftNav setting an em based line height when we want a unitless multiplier. */
}

.shiftnav-inner {
	background: url() center top no-repeat; /* Specify the site logo you want to appear in the mobile menu. */
	padding-top: 0px; /* Set to however tall the site logo is. */
}

.shiftnav ul.shiftnav-menu ul.sub-menu li.menu-item > .shiftnav-target,
.shiftnav ul.shiftnav-menu ul.sub-menu li.shiftnav-retract > .shiftnav-target {
	line-height: 100%;
	padding: 15px 25px 15px 35px;
}

div.mobilenav {
	display:none;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1140px) {
	
}

@media only screen and (max-width:1024px) {

}

@media only screen and (max-width:768px) {

}

@media only screen and (max-width:480px) {

}

@media only screen and (max-width:320px) {
	
/*------------------------------------*\
    MOBILE NAV
\*------------------------------------*/
/*
.wrapper {
    display: table;
    margin: 70px auto 0 auto;
    position: relative;
    width: 95%;
    max-width: 1280px;
}

.nav {
	display:none;
}

div.mobilenav {
	display:block;
	width:100%;
	height: 50px;
	background:#000;
	background-position:left;
	position:fixed;
	top:0;
	left:0;
	z-index:999;
	-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

div.mobilenav ul {
	padding:0;
	position: relative;
	width: 100%;
	display:none;
	-webkit-transition: top 1s;
	-moz-transition: top 1s;
	-o-transition: top 1s;
	transition: top 1s;
	top:50px;
	z-index:5;
	margin:0;
	background:rgba(60, 132, 54, 0.97);
}

div.mobilenav ul li {
	text-decoration:none;
	list-style:none;
	padding: 8px 0 8px 15px;
}

div.mobilenav ul li a {
	font-size:15px;
	color:#fff;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-weight:light;
}

/*menu borders

div.mobilenav ul li {
	border-top: 1px solid #307f29;
	border-bottom: 1px solid #63935f;
}

div.mobilenav ul li:first-child {
	border-top: none;
}

div.mobilenav ul li:last-child {
	border-bottom: none;
}

/*mobile icon is set in funvtions.php*/

/*------------------------------------*\
    	END MOBILE NAV
\*------------------------------------*/


}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
   
/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
   
.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {
	
}
.bypostauthor {
	
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
