/**
* Featherlight – ultra slim jQuery lightbox
* Version 0.1.8 – https://github.com/noelboss/featherlight
*
* Copyright 2013, Noel Bossart
* 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.95);
}
.featherlight .featherlight-close
{
	position:absolute;
	z-index:9999;
	right:20px;
	top:20px;
	width:35px;
	height:35px;
	border-radius:50%;
	cursor:pointer;
	text-decoration:none;
	text-align:center;
	font-size:2em;
	padding:2px 2px 2px 2px;
	font-weight:bolder;
	background:#f2ede3;
	color:#f06060;
}
.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;
	padding:2% 2% 0 2%;
	width:60%;
	height:80%;
	overflow:auto;
	border-radius:.5em;
	box-shadow:0 0 10px #f2ede3;
	background:#f06060 url(../images/overlay.png);
	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
{
	width:100%;
}
}