/*
	Theme Name: Intergrad
	Theme URI: http://www.intergrad.si
	Description: Intergrad
	Version: 1.0
	Author: Tomaz Kosmac
	Author URI: http://www.intergrad.si
	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 {
	font-family: 'Friz-Quadrata';
	color:#333333;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#262626;
	text-decoration:none;
}
a:hover {
	color:#333333;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

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

/* wrapper */
.wrp {
	width: 100%;
	min-height: 100%;
	height: 100%;
	position: relative;
	font-family: 'Friz-Quadrata';
}
.wrp .back {
	position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}
.wrp .back img {
	display: block;
    margin: auto;
    min-height: 100%;
	min-width: 100%;

	filter: grayscale(55%); /*for black and white effect*/
	opacity: 1;
}
.wrp .back::after {
	content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.main {
	top: 10px;
	max-width: 960px;
	width: auto;
	height: auto;
	position: relative;
	margin: 0 auto;
	background-color: #ffffff;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-bottom-left-radius: 3px;
	border-bottom-right-radius: 3px;
}

/* header */
.header {
	display: block;
	height: 60px;
	padding: 5px 10px 5px 2px;
	background-color: rgba(0,0,0,0.16);
}
/* logo */
.logo {
	/*width: 224px; /*no doo*/
	width: 281px; /*doo*/
    height: auto;
	display: inline-block;
	margin-top: -5px;
}
.logo-img {
	/*width: 224px; /*no doo*/
	width: 281px; /*doo*/
	max-height: 60px;
	height: auto;
}
/* nav */
.nav {
	max-height: 55px;
	/*width: calc(100% - 229px); /*no doo*/
	width: calc(100% - 286px); /*doo*/
	display: inline-block;
	text-align: right;
	float: none;
	clear: right;
	vertical-align: super;
}
.links {
	display: inline-block;
	position: relative;
}
.nav a {
	padding-left: 20px;
	font-size: 17px;
	float: right;
	cursor: pointer;
}
.nav a.aktiv, .nav a span, .nav a:hover{
	color: rgba(0,0,0,0.4);
}
.nav .dropdown {
	overflow: hidden;
	float: right;
	cursor: pointer;
}
.dropdown a.dropbtn {
	display: inline;
	font-size: 17px; 
	padding-left: 20px;
}
.dropdown-content {
	max-height: 0px;
	position: absolute;
	background-color: #ffffff;
	min-width: 160px;
	box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.25);
	z-index: 1;
	margin-top: 21px;
	border-radius: 3px;
	overflow: hidden;

	-webkit-transition: max-height 0.25s ease-out;
    -moz-transition: max-height 0.25s ease-out;
    -o-transition: max-height 0.25s ease-out;
	transition: max-height 0.25s ease-out;
}
.dropdown-content a {
	float: none;
	padding: 5px 16px;
	display: block;
	text-align: left;
}
.dropdown:hover .dropdown-content {
	max-height: 200px;
	transition: max-height 0.25s ease-in
}

/* HAMBURGER */
.three {
	padding: 5px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	color: #000;
	text-align: center;
	display: none;
}
  
.hamburger .line {
	width: 40px;
	height: 4px;
	background-color: #000;
	display: block;
	margin: 6px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
  
.hamburger:hover {
	cursor: pointer;
}
#hamburger.is-active .line:nth-child(1) {
	width: 25px;
}
  
#hamburger.is-active .line:nth-child(2) {
	width: 32px;
}
  
#hamburger.is-active .line {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	-o-transform: rotate(30deg);
	transform: rotate(30deg);
}

/* footer */
.footer {
	padding: 10px 50px;
	background-color: rgba(0,0,0,0.16);
	font-size: 14px;
	width: 100%;
	display: block;
	position: absolute;
	bottom: 0;
}
.footer a {
	color: #000;
	vertical-align: text-bottom;
	display: inline-block;
}
.footer .inside {
	width:auto;
	height: auto;
	margin: 0 auto;
	text-align: center;
}
.footer .one {
	display: inline-block;
	width: 170px;
	height: 17px;
}
.footer .one img.inline {
	display: inline-block;
	width: 17px;
	height: 17px;
	vertical-align: top;
}
.footer .one a.inline {
	display: inline-block;
	width: 500px;
	height: auto;
}
.content {
	display: block;
	position: relative;
	width: 100%;
	min-height: calc(100vh - 70px);
	height: 100%;
	padding-bottom: 58px;
}
.space1 {
	display: block;
	width: 100%;
	height: 30px;
}
.space2 {
	display: block;
	width: 100%;
	height: 25px;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/

/***********HOME***********/
.doma {
	display: block;
	position: relative;
	width: 100%;
	height: auto; 
}
#slogan-res {
	display: none;

	-webkit-transition: display .25s ease-out;
	-moz-transition: display .25s ease-out;
	-o-transition: display .25s ease-out;
	transition: display .25s ease-out;
}
#slogan-none {
	display: block;

	-webkit-transition: display .25s ease-out;
	-moz-transition: display .25s ease-out;
	-o-transition: display .25s ease-out;
	transition: display .25s ease-out;
}
.doma .part .slogan {
	display: block;
	position: absolute;
	bottom: 0;
	background-color: rgba(0,0,0,0.55);
	font-size: 40px;
	color: #FFFFFF;
	text-align: right;
	padding: 10px 15px 10px 10px;

	animation: animateElement linear 0.5s;
  	animation-iteration-count: 1;
}
.doma .part {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}
.doma .part .inside {
	width: 563px;
	height: auto;
	margin: 0 auto;
	position: relative;
	display: flex;
}
.doma .part .inside .icon {
	width: 130px;
	height: 130px;
	display: inline-block;
	margin: 0 auto;
}
.doma .part .inside .bubble {
	display: inline-block;
	width: 385px;
	height: auto;
	margin-left: 25px;
	font-size: 15px;
}
.doma .part .inside .bubble2 {
	display: inline-block;
	width: 385px;
	height: auto;
	font-size: 17px;
	margin-right: 25px;
	position: relative;
	margin-top: 20px;
}
.doma .part .inside .bubble .besedilo {
	position: relative;
	background: rgba(0,0,0,0.15);
	border-radius: 8px;
	padding: 20px;
	box-shadow: 5px 5px rgba(0,0,0,0.2);
}
.doma .part .inside .bubble .besedilo:after {
	content: '';
	position: absolute;
	left: 0;
	top: 30%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-right-color: rgba(0,0,0,0.15);;
	border-left: 0;
	margin-top: -20px;
	margin-left: -20px;
}
.doma .part .inside .bubble2 .besedilo2 {
	position: relative;
	background: rgba(0,0,0,0.15);
	border-radius: 8px;
	padding: 20px;
	box-shadow: -5px 5px rgba(0,0,0,0.2);
}
.doma .part .inside .bubble2 .besedilo2:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-left-color: rgba(0,0,0,0.15);
	border-right: 0;
	margin-top: -20px;
	margin-right: -20px;
}

@keyframes animateElement{
  0% {
    opacity: 0;
    transform: translate(0px,10px);
  }
  100% {
    opacity: 1;
    transform: translate(0px,0px);
  }
}

/**********\HOME***********/

/*******STORITVE*********/
.storitve {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	margin: 0 auto;
}
.storitve .spaceLine {
	width: 100%;
	height: 2px;
	background: rgba(0,0,0,0.16);
	margin-top:0px;
}
.storitve .in {
	width: 100%;
	height: auto;
	padding-top: 20px;
}
.storitve .in:first-child {
	padding-bottom: 10px;
}
.storitve .in a:hover .one {
	border-color: #000;

	-webkit-transition: border-color .25s ease-out;
    -moz-transition: border-color .25s ease-out;
	-o-transition: border-color .25s ease-out;
	
	transition: border-color .25s ease-out;
}
.storitve .in a:hover .one .image img {
	filter: grayscale(100%);
	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);

	transition: all 0.5s ease;
}
.storitve .in h2 {
	font-size: 25px;
	margin-left: 20px;
	margin-top: 0px;
	margin-bottom: 20px;
	color: 	#000;
}
.storitve .in .one {
	width: 100%;
	max-height: 200px;
	height: auto;
	float: none;
	clear: both;
	overflow: hidden;
	margin-bottom: 20px;
	background:rgba(0,0,0,0.15);

	border-radius: 3px;
	border-bottom: 1px solid;
	border-top: 1px solid;
	border-color: rgba(0,0,0,0);

	-webkit-transition: border-color .25s ease-out;
    -moz-transition: border-color .25s ease-out;
    -o-transition: border-color .25s ease-out;
	transition: border-color .25s ease-out;
}
.storitve .in .one .image {
	width: 40%;
	height: auto;
	display: inline-block;
	overflow: hidden;
}
.storitve .in .one .image img {
	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	filter: grayscale(0%);
	transition: all 0.5s ease;
}
.storitve .in .one .text {
	width: 59%;
	height: auto;
	display: inline-block;
	vertical-align: top;
	padding: 10px 15px;
}
.storitve .in .one .text h3 {
	margin-top: 3px;
	font-size: 17px;	
}
.storitve .in .one .text p {
	font-size: 15px;
}
/*******\STORITVE*********/

/*********POST************/
#swipebox-overlay, #swipebox-bottom-bar, #swipebox-top-bar{
	background: rgba(0,0,0,0.9) !important;
}

.post {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
}
.post .naslovna {
	display: block;
	width: 100%;
	max-height: 250px;
	height: auto;
	position: relative;
	overflow: hidden;
}
.post .naslovna img {
	max-height: 250px;
	height: auto;
	width: 100%;
	object-fit: cover;

	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	filter: grayscale(0%);
	transition: all 0.5s ease;
}
.post .naslovna a:hover img {
	filter: grayscale(100%);

	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
}
.post .besedilo {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	padding: 25px 20px;

	line-height: 22px;
	font-size: 17px;
	color: #000;
}
.post .besedilo h1 {
	margin-top: 0px;
	color: #000;
	font-size: 26px;
}
.post .galerija {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
	padding-bottom: 20px;
}
.post .galerija a {
	display: inline-block;
	width: 25%;
}
.post .galerija a:hover img {
	filter: grayscale(100%);

	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
}
.post .galerija img {
	width: 100%;
	height: auto;
	object-fit: cover;

	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	filter: grayscale(0%);
	transition: all 0.5s ease;
}
/*********\POST************/

/********O PODJETJU********/
.about {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}
.about .naslovna {
	width: 100%;
	height: auto;
	max-height: 250px;
	position: relative;
	overflow: hidden;
}
.about .naslovna img {
	width: 100%;
	height: auto;
	object-fit: cover;

	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	filter: grayscale(0%);
	transition: all 0.5s ease;
}
.about .naslovna a:hover img {
	filter: grayscale(100%);

	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
}
.about .besedilo {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	padding: 20px;

	font-size: 17px;
	color: #000;
}
.about .besedilo h1 {
	font-size: 30px;
}
/*******\O PODJETJU*******/

/*******KONTAKT*******/
.kontakt {
	display: block;
	position: relative;
	width: 100%;
	height: auto;
}
.kontakt .naslovna {
	width: 100%;
	height: auto;
	max-height: 150px;
	position: relative;
	overflow: hidden;
}
.kontakt .naslovna img {
	width: 100%;
	height: auto;
	object-fit: cover;

	-webkit-filter: grayscale(0%);
	-moz-filter: grayscale(0%);
	filter: grayscale(0%);
	transition: all 0.5s ease;
}
.kontakt .naslovna a:hover img {
	filter: grayscale(100%);

	-webkit-filter: grayscale(100%);
	-moz-filter: grayscale(100%);
	filter: grayscale(100%);
}
.kontakt .besedilo {
	display: inline-block;
	width: 49%;
	height: auto;
	position: relative;
	padding: 20px;
	overflow: hidden;
	vertical-align: top;

	font-size: 15px;
	color: #000;
}
.kontakt .besedilo .podatki {
	font-size: 17px;
}
.kontakt .besedilo .ikonce {
	font-size: 15px;
	margin-top: 7px;
	margin-bottom: 7px;
	width: auto;
}
.kontakt .besedilo .kontaktspace {
	display: block;
	height: 10px;
}
.kontakt .besedilo p {
	margin-top: 3px;
	margin-bottom: 3px;
	padding-left: 0;
    padding-right: 0;
}
.kontakt .besedilo .ikonce img.inline {
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: top;
}
.kontakt .besedilo h1 {
	font-size: 30px;
	margin-top: 5px;
}

#wpcf7-f159-p41-o1 {
	margin-top: 0 !important;
}
.twenty-fifteen-pattern{
	padding-top: 0 !important; 
}
/*******\KONTAKT*******/

/*******CONTACT FORM*******/
#telefon {
	width: 100%;
    padding: .5278em;
    line-height: normal;
    font-size: 1.9rem;
    border: 1px solid rgba(51,51,51,.1);
    color: rgba(51,51,51,.7);
    background: #f7f7f7;
    border-radius: 0;
    margin: 0;
    max-width: 100%;
    vertical-align: baseline;
    font-family: "Noto Serif",serif;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
	box-sizing: border-box;
}
#telefon:focus {
	border:1px solid rgba(51,51,51,.3);
	color:#333;
	background:#fff
}
.logged-in div.wpcf7 {
	margin-top: 0;
}
/*******\CONTACT FORM*******/


/************404************/
.page-404 {
	display: block;
	width: 100%;
	height: 100%;	
}
.page-404 .in {
	display: block;
	width: 100%;
	height: auto;
	position: relative;
	padding: 20px;

	font-size: 17px;
	color: #000;
}
/***********\404***********/


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

@font-face {
    font-family: 'Friz-Quadrata';
	src: url("fonts/FRZQUADN.ttf") format("truetype");
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:781px) and (max-width:980px) {
	.wrp {
		padding-left: 20px !important;
		padding-right: 20px !important;
	}
	.links {
		display: inline-block;
		position: relative;
	}
	.main {
		width: 100%;
		height: auto;
		top: 0;
	}
	.storitve .in .one .image img {
		height: 100%;
		width: auto;
		max-width: none;
	}
}

/*doo*/
@media only screen and (max-width:828px) and (min-width:779px) {
	.nav a, .dropdown-content a, .dropdown a.dropbtn {
		font-size: 15px;
	}
}

/*else*/
@media only screen and (max-width:780px) and (min-width:700px){
	/*HAMBURGER*/
	.three {
		display: inline-block;
	}
	.links {
		display: none;
		position: absolute;
		z-index: 2;
		width: auto;		
		padding: 10px 20px;
		background: rgba(216,216,216,1);
		right: 0;
		border-bottom-left-radius: 5px;
	}
	.links a {
		width: 100%;
		float: none;
		display: block;
		text-align: left;
		padding-left: 0;
		font-size: 25px;
	}
	.links a.dropbtn {
		font-size: 25px;
		padding-left: 0;
	}
	.links .dropdown {
		float: none;
		width: 100%;
		text-align: left;
	}
	.dropdown-content {
		max-height: 0px;
		height: auto;
		position: relative;
		background-color: rgba(216,216,216,1);
		width: auto;
		box-shadow: none;
		z-index: 0;
		margin-top: 0;
		border-radius: 0;
		overflow: hidden;

		-webkit-transition: max-height 0.25s ease-out;
		-moz-transition: max-height 0.25s ease-out;
		-o-transition: max-height 0.25s ease-out;
		transition: max-height 0.25s ease-out;
	}
	.dropdown-content a {
		float: none;
		padding: 5px 16px;
		display: block;
		text-align: left;
	}
	.nav {
		vertical-align: top;
	}
	.wrp {
		padding-left: 0;
		padding-right: 0;
	}
	.wrp .back {
		display: none;
		position: relative;
	}
	.main {
		top: 0;
		width: 100%;
		height: auto;
	}
	.storitve .in .one .image img {
		height: 100%;
		width: auto;
		max-width: none;
	}
}
@media only screen and (max-width:915px) and (min-width:320px) {
	/*FOOTER*/
	.footer {
		padding: 10px 5px 15px 10px;
		position: relative;
	}
	.footer .one {
		width: 100%;
		margin-left: 0 !important;
	}
}
@media only screen and (max-width:699px) and (min-width:320px) {
	/*HAMBURGER*/
	.three {
		display: inline-block;
	}
	.links {
		display: none;
		position: absolute;
		z-index: 2;
		width: auto;		
		padding: 10px 20px;
		background: rgba(216,216,216,1);
		right: 0;
		border-bottom-left-radius: 5px;
	}
	.links a {
		width: 100%;
		float: none;
		display: block;
		text-align: left;
		padding-left: 0;
		font-size: 25px;
	}
	.links a.dropbtn {
		font-size: 25px;
		padding-left: 0;
	}
	.links .dropdown {
		float: none;
		width: 100%;
		text-align: left;
	}
	.dropdown-content {
		max-height: 0px;
		height: auto;
		position: relative;
		background-color: rgba(216,216,216,1);
		width: auto;
		box-shadow: none;
		z-index: 0;
		margin-top: 0;
		border-radius: 0;
		overflow: hidden;

		-webkit-transition: max-height 0.25s ease-out;
		-moz-transition: max-height 0.25s ease-out;
		-o-transition: max-height 0.25s ease-out;
		transition: max-height 0.25s ease-out;
	}
	.dropdown-content a {
		float: none;
		padding: 5px 16px;
		display: block;
		text-align: left;
	}
	.nav {
		vertical-align: top;
	}

	/*MAIN*/
	.wrp {
		padding-left: 0;
		padding-right: 0;
	}
	.wrp .back {
		display: none;
		position: relative;
	}
	.main {
		top: 0;
		width: 100%;
		height: auto;
	}
	.content {
		min-height: none;
		height: auto;
		padding-bottom: 0;
	}

	/*HOME*/
	#slogan-res {
		display: block;

		-webkit-transition: display .25s ease-out;
		-moz-transition: display .25s ease-out;
		-o-transition: display .25s ease-out;
		transition: display .25s ease-out;
	}
	#slogan-none {
		display: none;
		
		-webkit-transition: display .25s ease-out;
		-moz-transition: display .25s ease-out;
		-o-transition: display .25s ease-out;
		transition: display .25s ease-out;
	}
	.doma {
		padding-bottom: 25px;
	}
	.doma .part .slogan {
		display: block;
		width: 100%;
		height: auto;
		position: relative;
		background-color:rgba(0,0,0,0.15);
		color: #000;
	}
	.doma .part {
		padding-top: 0px;
	}
	.doma .part .inside {
		width: 100%;
		display: block;
		padding-top: 15px;
	}
	.doma .part .inside .bubble2, .doma .part .inside .bubble {
		width: 100%;
		margin-right: 0;
		margin-left: 0;
		float: none !important;
		clear: both;
		margin-top: 18px;
	}
	.doma .part .inside .bubble2 .besedilo2, .doma .part .inside .bubble .besedilo {
		width: calc(100% - 10px);
		margin-left: 5px;
		padding: 10px;
		box-shadow: -3px 3px rgba(0,0,0,0.2);
	}
	.doma .part .inside .bubble2 .besedilo2:after, .doma .part .inside .bubble .besedilo:after {
		content: '';
		position: absolute;
		top: 0;
		left: 50%;
		width: 0;
		height: 0;
		border: 15px solid transparent;
		border-bottom-color: rgba(0,0,0,0.15);
		border-top: 0;
		margin-left: -15px;
		margin-top: -15px;
	}
	.doma .part .inside .icon {
		display: block;
		width: 65px;
		height: 65px;
		margin: 0 auto;
		float: none !important;
		clear: both;
	}

	/*STORITVE*/
	.storitve .in {
		padding-top: 15px;
	}
	.storitve .in:first-child {
		padding-top: 10px;
	}
	.storitve .in h2 {
		margin-bottom: 10px;
		text-align: center;
		margin-left: 0;
	}
	.storitve .in .one {
		max-height: none;
	}
	.storitve .in .one .image {
		width: 100%;
		height: auto;
		float: none !important;
		clear: both;
		max-height: 130px;
	}
	.storitve .in .one .image img {
		height: auto;
		width: 100%;
		max-height: 130px;
		object-fit: cover;
	}
	.storitve .in .one .text {
		width: 100%;
		float: none !important;
		clear: both;
	}

	/*POST*/
	.post .besedilo h1 {
		text-align: center;
	}
	.post .galerija a {
		width: 33.33%;
	}
	.post .naslovna, .about .naslovna, .kontakt .naslovna {
		max-height: 130px;
	}
	.post .naslovna img, .about .naslovna img, .kontakt .naslovna img {
		max-height: 130px;
		width: 100%;
		height: auto;
		object-fit: cover;
	}

	/*ABOUT*/
	.about .besedilo {
		padding: 10px;
	}
	.about .besedilo h1 {
		text-align: center;
		margin: 0;
	}
	.about .besedilo p {
		margin-top: 10px;
	}

	/*KONTAKT*/
	.kontakt .besedilo {
		width: 100%;
		height: auto;
		padding: 10px;
	}
	iframe {
		width: 100%;
		min-height: 200px;
		height: auto;
	}
	.kontakt .besedilo p {
		padding: 0;
	}

}

/*doo*/
@media only screen and (max-width:340px) and (min-width:320px) {
	.logo {
		width: 220px;
	}
	.logo-img {
		width: 220px;
		max-height: 46px;
	}
	.nav {
		width: calc(100% - 225px);
		max-height: 46px;
	}
	.header {
		height: 46px;;
	}
	.three {
		padding: 0;
	}
	.links {
		margin-top: 2px;
	}
}
/**/


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