/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 1.2.1 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2015, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all
	{

.featherlight
	{
	display:none;
	position:fixed;
	top:0%;
	right:0;
	bottom:0;
	left:0;
	z-index:2;
	padding: 5%;
	text-align:center;
	white-space:nowrap;
	cursor:pointer;
	background:#333;
	padding-top: 8%;
	display:inline-block;
	height:100%;
	vertical-align:middle;
	overflow-x: hidden;
	}

.featherlight .featherlight-content
	{
	overflow-x: hidden;
	position:relative;
	text-align:left;
	vertical-align:middle;
	display:inline-block;
	min-width:30%;
	padding: 2%;
	border: 5px solid #a89e82;
	max-height:95%;
	background:#fff;
	cursor:auto;
	white-space:normal
	}

.featherlight .featherlight-inner
	{
	display:block
	}

.featherlight .featherlight-close-icon
	{
	position:absolute;
	z-index:999999;
	top:1%;
	right:1%;
	line-height:25px;
	width:25px;
	padding: 2%;
	cursor:pointer;
	text-align:center;
	background-color: #000000;
	font-size: 150%;
	font-weight: bold;
	color:#ffffff;
	}

.featherlight .featherlight-image
	{
	width:100%
	}

.featherlight-iframe .featherlight-content
	{
	border-bottom:0;
	padding:0
	}

.featherlight iframe
	{
	border:0
	}

}

@media only screen and (max-width:1024px)
	{

.featherlight .featherlight-content
	{
	max-height:98%;
	overflow-x: hidden;
	}
}