/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 0.3.1 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2014, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
	.featherlight {
		display: none;
		position:fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		z-index: 9999;
		height: 100%;
		text-align: center;
		cursor: pointer;
		background: #333;
		background: rgba(0, 0, 0, 0.8);
	}

	.featherlight .featherlight-close {
		position: absolute;
		z-index: 9999;
		right: -16px;
		top: -16px;
		background:#02cdd2;
		-webkit-border-radius: 32px;
		-moz-border-radius: 32px;
		border-radius: 32px;
		overflow:hidden;
		text-align:center;
		line-height:32px;
		color:white;
		width:32px;
		height:32px;
		cursor: pointer;
		text-decoration: none;
		text-align: center;
		font: Arial, sans-serif;
	}

	.featherlight:before {
		content: '';
		display: inline-block;
		height: 100%;
		vertical-align: middle;
		margin-right: -0.25em;
	}

	.featherlight .featherlight-content {
		text-align: left;
		display: inline-block;
		vertical-align: middle;
		position: relative;
		max-width: 80%;
		max-height: 95%;
		cursor: auto;
	}

	.featherlight .featherlight-inner {
		display: block;
	}

	.featherlight-iframe .featherlight-content {
		min-height: 60%;
	}

	.featherlight iframe {
		border: none;
		position: absolute;
		top: 0; bottom: 0;
		left: 0; right: 0;
		height: 100%;
		width: 100%;
	}

	.featherlight .featherlight-image {

		max-height: 85vh;
		opacity:0;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
	}
}