/**
 * Featherlight - ultra slim jQuery lightbox
 * Version 0.2.2 - 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:url(../images/bgstrippop.png) left top repeat;
}
.featherlight .featherlight-close {
	position:absolute;
	z-index:9999;
	right:11px;
	top:11px;
	line-height:25px;
	width:25px;
	cursor:pointer;
	text-decoration:none;
	text-align:center;
	font:Arial, sans-serif;
	color:#000
}
.featherlight:before {
	content:'';
	display:inline-block;
	height:100%;
	vertical-align:middle;
	margin-right:-.25em
}
.featherlight .featherlight-content {
	background:#fff;
	text-align:left;
	display:inline-block;
	vertical-align:middle;
	position:relative;
	padding:2%;
	max-height:95%;
	overflow:auto;
	cursor:auto;
	border-radius: 12px;
	width:45%;
}
.featherlight .featherlight-inner {
	display:block
}
.featherlight-iframe .featherlight-content {
	min-height:60%
}
.featherlight iframe {
	border:0;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	height:100%;
	width:100%
}
.featherlight .featherlight-image {
	width:100%;
	max-height:85vh
}
}
