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

.featherlight {
	display:none;
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:999999999;
	text-align:center;
	white-space:nowrap;
	cursor:pointer;
	background:#333;
	background:rgba(0,0,0,0);
}

.featherlight:last-of-type {
	background:rgba(0,0,0,.8)
}

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

.featherlight .featherlight-content {
	width:800px;
	position:relative;
	text-align:left;
	vertical-align:middle;
	display:inline-block;
	overflow:auto;
	padding:25px 25px 0;
	border-bottom:25px solid transparent;
	min-width:30%;
	margin-left:5%;
	margin-right:5%;
	max-height:95%;
	color:#FFFFFF;
	cursor:auto;
	white-space:normal;
	font-size:15px;
	line-height:200%;
}



.featherlight .featherlight-content strong{
	font-size:1.3em;
	letter-spacing:0.1em;
	}

@media screen and (max-width: 700px) {
.featherlight .featherlight-content {
	width:90%;
	margin:0 auto;
	}

.featherlight .featherlight-content strong{
	font-size:1.1em;
	letter-spacing:0.1em;
	}
}

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

.featherlight .featherlight-close-icon {
	position:fixed;
	z-index:99999999999999;
	top:50px;
	right:50px;
	line-height:100%;
	padding:2px 10px 10px 10px;
	cursor:pointer;
	text-align:center;
	font:Arial, sans-serif;
	background:#fff;
	color:#000;
	font-size:30px;
}
@media screen and (max-width: 700px) {
	.featherlight .featherlight-close-icon {
	position:fixed;
	z-index:99999999999999;
	top:10px;
	right:10px;
	line-height:100%;
	padding:2px 10px 10px 10px;
	cursor:pointer;
	text-align:center;
	font:Arial, sans-serif;
	background:#fff;
	color:#000;
	font-size:30px;
	}

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

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

.featherlight iframe {
	border:0;
}
}

