/*
	Theme Name: Malan Voster
	Theme URI: http://malanvoster.co.za
	Description: Custom template for Malan Voster
	Version: 0.9
	Author: Engage Brandcraft
	Author URI: http://engage.co.za
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	color: #000000;
	font-size: 1.4rem;
	font-family: 'Open Sans', sans-serif;
}

html,
body {
   margin:0;
   padding:0;
   height:100%;
}

/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
	webkit-transition: color 0.2s ease;
	-moz-transition: color 0.2s ease;
	-ms-transition: color 0.2s ease;
	-o-transition: color 0.2s ease;
	transition: color 0.2s ease;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

.no-scroll {
	overflow: hidden;
}

/* wrapper */
.wrapper {
	width:100%;
	margin:0 auto;
	position:relative;
	overflow: hidden;
	min-height:100%;
	padding-bottom: 12rem;
}

.container {
	width: 100%;
	margin: 0 auto;
	padding: 0 5.5rem;
}

/* header */
.header {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #ffffff;
	z-index: 100;
}

.header .head-container {
	position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  height: 12rem;
  padding: 0 5.5rem;
}

.header .head-container .hamburger {
	display: inline-block;
	padding: 10px;
  font-size: 0;
  margin-left: -10px;
}

.header .head-container .hamburger:focus {
	outline: 0;
}

.hamburger-inner, 
.hamburger-inner:after, 
.hamburger-inner:before {
	width: 2rem;
	height: 0.2rem;
	border-radius: 0;
}

.hamburger-box {
	width: 2rem;
	height: 1.7rem;
}

.hamburger--collapse .hamburger-inner:after {
	top: -14px;
}

.hamburger-inner:before {
	top: -7px;
}

/* logo */
.logo {
	width: 5rem;
}

.logo-img {

}

.project-toggler {
	display: inline-block;
	width: 2.2rem;
	height: 2.2rem;
	background-image: url('img/project-toggler.svg');
	background-size: 2.2rem;
	background-repeat: no-repeat;
	background-position: center center;
	visibility: hidden;
	cursor: pointer;
	position: relative;
}

.project-toggler.is-active {
	background: transparent;
}

.project-toggler.is-active:before,
.project-toggler.is-active:after {
	content: '';
	width: 2.1rem;
	height: 0.2rem;
	background-color: #000000;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}

.project-toggler.is-active:before {
	transform: translate(-50%) rotate(45deg);
}

.project-toggler.is-active:after {
	transform: translate(-50%) rotate(135deg);
}

.side-nav {
	width: 100%;
	max-width: 36rem;
	background-color: #eaeaea;
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	z-index: 1;
	transform: translate(-100%, 0);
	opacity: 0;
	padding: 0 5rem 12rem;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	webkit-transition: transform 0.2s ease, opacity 0.2s ease;
	-moz-transition: transform 0.2s ease, opacity 0.2s ease;
	-ms-transition: transform 0.2s ease, opacity 0.2s ease;
	-o-transition: transform 0.2s ease, opacity 0.2s ease;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.side-nav ul {
	margin: 0 0 2rem;
	padding: 0;
}

.side-nav ul li {
	display: block;
	font-size: 2.1rem;
	font-weight: 300;
	text-transform: uppercase;
	margin-bottom: 2rem;
	list-style: none;
}

.side-nav ul li a {
	color: #000000;
}

.side-nav ul li a:hover,
.side-nav ul li.current-menu-item > a {
	color: #999999;
}

.side-nav ul li:last-child {
	margin-bottom: 0;
}

.side-nav ul li ul li {
	font-size: 1.6rem;
	line-height: 2.6rem;
	text-transform: none;
	margin-bottom: 0;
}

.side-nav.is-active {
	transform: translate(0, 0);
	opacity: 1;
	z-index: 90;
}

/* sidebar */
.sidebar {

}
/* footer */
.footer {
	display: none;
}

.load-more-btn {
	border: 1px solid #000000;
	width: 150px;
	height: 40px;
	background-color: #ffffff;
	color: #000000;
	text-align: center;
	margin: 40px auto;
	display: inline-block;
	font-size: 1.4rem;
  text-transform: uppercase;
  webkit-transition: background 0.3s ease, color 0.3s ease;
	-moz-transition: background 0.3s ease, color 0.3s ease;
	-ms-transition: background 0.3s ease, color 0.3s ease;
	-o-transition: background 0.3s ease, color 0.3s ease;
	transition: background 0.3s ease, color 0.3s ease;
	outline: 0;
}

.load-more-btn:hover {
	background-color: #000000;
	color: #ffffff;
	outline: 0;
}

/*------------------------------------*\
    PAGES
\*------------------------------------*/

.bx-wrapper {
	touch-action: pan-x pinch-zoom;
	-ms-touch-action: pan-x pinch-zoom;
}

section {
	min-height: 100vh;
	width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
	top: inherit;
	position: absolute;
    bottom: 8rem;
    margin-top: -13px;
    outline: 0;
    width: 26px;
    height: 26px;
    text-indent: -9999px;
    z-index: 60;
    webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -ms-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    overflow: hidden;
}

.swiper-button-next:hover,
.swiper-button-prev:hover,
.swiper-button-next:focus,
.swiper-button-prev:focus {
	opacity: 0.8;
}

.swiper-button-next {
	right: 5.5rem;
    background: url(img/nav-arrow.svg) no-repeat center center;
    background-size: 26px;
	transform: rotate(180deg);
}

.swiper-button-prev {
	left: 5.5rem;
    background: url(img/nav-arrow.svg) no-repeat center center;
    background-size: 26px;
}

.swiper-button-next:after {
	display: none;
}

.home .bx-viewport {
	height: 100vh !important;
	max-height: calc(100vh - 12rem) !important;
}

.home .home-page-slider {
	width: 100%;
	height: 100vh;
	max-height: calc(100vh - 12rem) !important;
}

.home .home-page-slider .slide {
	min-height: 100%;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}

.home .home-page-slider .slide .project-title {
	position: absolute;
	right: 5.5rem;
	top: 4rem;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 1.4rem;
	display: block;
	width: 2.2rem;
	height: 2.2rem;
	background-image: url('img/project-toggler.svg');
	background-size: 2.2rem;
	background-repeat: no-repeat;
	background-position: center center;
	webkit-transition: opacity 0.2s ease;
	-moz-transition: opacity 0.2s ease;
	-ms-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.home .home-page-slider .slide .project-title:hover {
	opacity: 0.6;
}

/*------------------------------------*\
    ISOTOPE
\*------------------------------------*/

.behind-the-scenes-loop {
	height: auto !important;
}

.projects-loop {
	width: 100%;
	max-width: 106rem;
	margin: 0 auto;
	margin-top: 5rem;
	height: auto;
	padding-bottom: 6rem;
	text-align: center;
}

.projects-loop .item,
.projects-loop .item-sizer { 
	width: 32%; 
}

.projects-loop .gutter-sizer {
	width: 1%;
}

.projects-loop .item {
	margin-bottom: 1%;
	height: 34rem;
	overflow: hidden;
}

.projects-loop .item a {
	position: relative;
	height: 100%;
	width: 100%;
	display: block;
}

.projects-loop .item .image {
	width: 100%;
	min-height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.projects-loop .item .play-button {
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	z-index: 1;
	opacity: 0;
	webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.projects-loop .item .play-button:after {
	content: '';
  width: 12rem;
  height: 12rem;
  position: absolute;
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(img/play-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.projects-loop .item .image img {
	max-height: 60rem;
  min-height: 100%;
  max-width: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.projects-loop .item .title {
	z-index: 2;
	position: absolute;
	bottom: 0;
	left:  0;
	width: 100%;
	background-color: #ffffff;
	font-size: 1.4rem;
	text-transform: uppercase;
	text-align: center;
	min-height: 5.8rem;
	padding: 0.4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translate(0, 100%);
	webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.projects-loop .item a:hover .title {
	transform: translate(0, 0);
}

.projects-loop .item a:hover .play-button {
	opacity: 1;
}

.single-projects .project-toggler {
	visibility: visible;
}

.single-projects .bx-viewport {
	height: 100vh !important;
	max-height: calc(100vh - 12rem) !important;
}

.single-projects .projects-page-slider {
	height: 100vh !important;
	max-height: calc(100vh - 12rem) !important;
}

.single-projects .projects-page-slider img {
	display: none;
}
.single-projects .projects-page-slider .slide.portrait {
	background-size: contain;
}


.single-projects .projects-page-slider .slide {
	min-height: 100%;
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}

.single-projects .project-overlay {
	height: 100%;
	width: 100%;
	position: absolute;
	background: #ffffff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 5rem 3.5rem 14rem;
	opacity: 0;
	z-index: -1;
	visibility: hidden;
	webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.single-projects .project-overlay .play-button {
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	position: absolute;
	z-index: 1;
	opacity: 0.6;
	webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
	top: 0;
	cursor: pointer;
}

.single-projects .project-overlay .play-button:after {
	content: '';
  width: 12rem;
  height: 12rem;
  position: absolute;
  opacity: 0.3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(img/play-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.single-projects .project-overlay.is-active {
	z-index: 85;
	opacity: 1;
	visibility: visible;
}

.single-projects .project-overlay .scroll-container {
	overflow-y: scroll;
	max-height: 100%;
}

.single-projects .project-overlay .bx-viewport {
	height: inherit !important;
}

.single-projects .project-overlay .thumb-slider .thumb .img,
.single-projects .project-overlay .thumb-slider .thumb-item {
	width: 30.4rem !important;
}

.single-projects .project-overlay .thumb-slider .thumb-item {

}

.single-projects .project-overlay .thumb-slider .thumb-item.bx-clone {
	display: none !important;
}

.single-projects .project-overlay .thumb-slider {
	margin-bottom: 4rem;
	max-width: 930px;
}

.single-projects .project-content .container {
	padding: 0 2rem;
	color: #999999;
	font-size: 1.4rem;
	max-width: 97rem;
}

.single-projects .project-overlay .bx-controls {
	display: block !important;
}

.single-projects .project-overlay .bx-wrapper .bx-controls-direction a,
.single-projects .project-overlay .thumb-slider .swiper-button-next,
.single-projects .project-overlay .thumb-slider .swiper-button-prev {
	bottom: 4rem;
}

.single-projects .project-overlay .bx-wrapper .bx-next,
.single-projects .project-overlay .thumb-slider .swiper-button-next {
	right: 3.5rem;
}

.single-projects .project-overlay .bx-wrapper .bx-prev,
.single-projects .project-overlay .thumb-slider .swiper-button-prev {
	left: 3.5rem;
}

.single-projects .project-overlay .bx-wrapper {
	margin: 0 auto 4rem;
}

.single-projects .project-content h1 {
	font-size: 1.8rem;
	font-weight: 300;
}

.single-projects .project-content .location {
	font-size: 1.4rem;
}

.single-projects .project-content .awards {
	font-size: 1.4rem;
}

.single-projects .project-content .awards h3 {
	font-size: 1.6rem;
	font-weight: 300;
	margin-top: 3rem;
}

/* Default Page*/

.page-template-default .container {
	max-width: 106rem;
	font-size: 1.4rem;
	margin-top: 5rem;
}

.page-template-default .container h2 {
	font-weight: 600;
	margin: 0;
	font-size: 1.6rem;
}

.page-template-default .container h3 {
	font-weight: 300;
	margin: 0;
}

.about-images {
	margin: 0 -0.5% 2rem;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}

.about-images div {
	height: auto;
	width: 33%;
	margin: 0 0.5%;
}

.page-template-default.awards .container {
	font-size: 1.6rem;
	line-height: 2.4rem;
	color: #999999;
}

.page-template-default.awards .container strong {
	color: #000000;
	font-weight: 600;
	margin: 1rem 0;
	display: inline-block;
}

/* Contact Page */
.contact .container {
	display: flex;
	flex-wrap: wrap;
}

.contact .info-left {
	font-size: 1.6rem;
	line-height: 3rem;
	color: #000000;
	margin-bottom: 5rem;
	width: 30%;
	padding-right: 1.5rem;
}

.contact .map {
	background-color: #cccccc;
	height: 33rem;
	width: 70%;
}

.contact .map .place-card {
	display: none !important;
}

.contact .contact-form {
	margin: 0 -1rem;
}

.contact .contact-form form {
	display: flex;
	flex-wrap: wrap;
}

.contact .contact-form .row {
	display: inline-block;
	margin-bottom: 2rem;
	padding: 0 1rem;
	width: 100%;
}

.contact .contact-form .row.half-row {
	width: 50%;
}

.contact .contact-form input,
.contact .contact-form textarea {
	background-color: #fafafa;
	border: 1px solid #999999;
	height: 4rem;
	width: 100%;
	padding: 0 1rem;
	color: #999999;
	text-transform: uppercase;
	font-size: 1.6rem;
	webkit-transition: color 0.3s ease, background-color 0.3s ease;
	-moz-transition: color 0.3s ease, background-color 0.3s ease;
	-ms-transition: color 0.3s ease, background-color 0.3s ease;
	-o-transition: color 0.3s ease, background-color 0.3s ease;
	transition: color 0.3s ease, background-color 0.3s ease;
}

.contact .contact-form textarea {
	height: 12rem;
	padding: 1rem;
}

.contact .contact-form input[type="submit"] {
	width: 13rem;
	background-color: #000000;
	border: none;
	color: #ffffff;
	height: 5rem;
	text-align: center;
	border-radius: 0;
	font-weight: 600;
	font-size: 2rem;
	webkit-transition: transform 0.3s ease;
	-moz-transition: transform 0.3s ease;
	-ms-transition: transform 0.3s ease;
	-o-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.contact .contact-form input[type="submit"]:hover {
	transform: translate(0.3rem, 0);
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
	outline: 0;
	color: #000000;
	background-color: #ffffff;
}

.contact .social a {
	display: inline-block;
	margin-right: 0.5rem;
	height: 3.5rem;
	width: 3.5rem;
	background-size: 3.5rem;
	background-repeat: no-repeat;
	background-position: center center;
	text-indent: -999px;
	webkit-transition: opacity 0.3s ease;
	-moz-transition: opacity 0.3s ease;
	-ms-transition: opacity 0.3s ease;
	-o-transition: opacity 0.3s ease;
	transition: opacity 0.3s ease;
}

.contact .social a:hover {
	opacity: 0.8;
}

.contact .social a.insta {
	background-image: url('img/icons/insta-icon.png');
}

.contact .social a.facebook {
	background-image: url('img/icons/fb-icon.png');
}

.contact .social br {
	display: none;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #999999;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #999999;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #999999;
}
:-moz-placeholder { /* Firefox 18- */
  color: #999999;
}

/* Awards */

.awards-loop .award {
	margin-bottom: 20px;
}

.awards-loop .award h3 {
	font-weight: 600;
	margin: 0 0 15px;
	font-size: 1.6rem;
	color: #000000;
	text-transform: uppercase;
}

.awards-loop .award h3 a {
	color: #000000;
}

.awards-loop .award h3 a:hover {
	color: #cccccc;
}

.awards-loop .award ul {
	margin: 0;
	padding: 0;
}

.awards-loop .award ul li {
	list-style: none;
	padding: 0;
	margin-bottom: 0;
	font-size: 1.6rem;
	color: #999999;
}

.awards-loop .award ul li:before {
	content: '- ';
}

/* Publications */

.publications-loop .item {
	background-color: #eaeaea;
	text-align: center;
}

.publications-loop .item .image {
	position: relative;
	top: 0;
	left: 0;
	transform: translate(0, 0);
	width: auto;
	height: 100%;
	padding: 1rem 0;
}

.publications-loop .item .image img {
	height: 100%;
	width: auto;
	top: 0;
	left: 0;
	transform: translate(0);
	position: relative;
}

.publications-loop .item .title {
	flex-wrap: wrap;
}

.publications-loop .item .title span {
  display: block;
  width: 100%;
  margin-top: -10px;
  font-size: 1.2rem;
}

/* Behind the scenes */

.behind-the-scenes-container {
	margin: 0 -0.5%;
	font-size: 0;
}

.behind-the-scenes-container .item {
	float: left;
	display: inline-block;
  margin: 0 0.5% 1%;
  width: 32%;
  height: 30.7rem;
}

.pop-up {
	max-height: calc(100% - 12rem);
	height: 100%;
	position: fixed;
	background: #ffffff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	z-index: -1;
	opacity: 0;
	visibility: hidden;
	webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-ms-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.pop-up .wrapper {
	padding: 0 !important;
	max-height: 100%;
}

.pop-up .wrapper .header {
	display: none;
}

.pop-up.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 10;
}

.pop-up header
.pop-up footer {
	display: none !important;
}

.close-btn {
	display: none;
	width: 2.2rem;
	height: 2.2rem;
	cursor: pointer;
	position: absolute;
	right: 5.5rem;
	z-index: 200;
}

.close-btn:before,
.close-btn:after {
	content: '';
	width: 2.1rem;
	height: 0.2rem;
	background-color: #000000;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
}

.close-btn:before {
	transform: translate(-50%) rotate(45deg);
}

.close-btn:after {
	transform: translate(-50%) rotate(135deg);
}

.pop-up .bx-wrapper img {
	height: auto;
	max-height: calc(96vh - 12rem);
	margin: 0 auto;
}

.pub-slider-container {
	max-height: calc(100vh - 12rem);
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

.pub-slider-container .bx-controls-direction {
	display: block !important;
	opacity: 1 !important;
}

.loader {
	padding: 2rem;
	text-align: center;
	font-style: italic;
	font-size: 0;
	background-image: url('img/bx_loader.gif');
	width: 3.2rem;
	height: 3.2rem;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 3.2rem;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.5;
}

.loader div {
	position: absolute;
	bottom: 2rem;
	left: 0;
	right: 0;
	font-size: 1.2rem;
}

.video-container {
	display: none;
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	max-width: 120rem;
	padding: 0 2rem;
	margin: 20px auto;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.single-projects.video-show .bx-wrapper, 
.single-projects.video-show .header,
.single-projects.video-show .project-content {
	display: none !important;
}

.single-projects.video-show .video-container  {
	display: block;
}

.plyr__play-large,
.plyr--video .plyr__controls button.tab-focus:focus, .plyr--video .plyr__controls button:hover,
.plyr--audio .plyr__controls button.tab-focus:focus,
.plyr--audio .plyr__controls button:hover {
	background: #000000;
}

.plyr input[type=range]:active::-webkit-slider-thumb {
    background: #000000;
}

.plyr input[type=range]:active::-moz-range-thumb {
    background: #000000;
}

.plyr input[type=range]:active::-ms-thumb {
    background: #000000;
}

.plyr__progress--played, .plyr__volume--display {
	color: #000000;
}



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@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;
}

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