@-webkit-keyframes k-opacity {
	0% {
		opacity:0.2;
	}
	100% {
		opacity:1;
	}
}
@-moz-keyframes k-opacity {
	0% {
		opacity:0.2;
	}
	100% {
		opacity:1;
	}
}
@-o-keyframes k-opacity {
	0% {
		opacity:0.2;
	}
	100% {
		opacity:1;
	}
}
@keyframes k-opacity {
	0% {
		opacity:0.2;
	}
	100% {
		opacity:1;
	}
}

img {
	opacity: 0;
	transition: all .3s ease-in;
	/*-webkit-animation: k-opacity 1s 300ms 1 normal forwards;
	-moz-animation: k-opacity 1s 300ms 1 normal forwards;
	-o-animation: k-opacity 1s 300ms 1 normal forwards;
	animation: k-opacity 1s 300ms 1 normal forwards;*/
}

.wp-admin img,
.featuredLink img,
#map-canvas img {
	opacity:1;
}

.highslide-wrapper img,
.tech-icons img {
	transition: all .5s ease-in;
	opacity:1;
}