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

		/* dimensions: spanning the background from edge to edge */
		width:800px;
		min-height:800px;
		position:fixed;
		margin:0px auto;
		left:0%;
		right:0%;
		/*top:80px;*/
		top:0px;
		z-index: 101; /* z-index needs to be >= elements on the site. */

		/* position: centering content */
		text-align: center;

		/* insures that the ::before pseudo element doesn't force wrap with fixed width content; */

		/* styling */
		cursor: pointer;
		/*background: #333;*/
		/* IE8 "hack" for nested featherlights */
		background: rgba(0, 0, 0, 0);
	}

	/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
	.featherlight:last-of-type {
		/*background: #333;*/
	}

	.featherlight:before {
		/* position: trick to center content vertically */
		content: '';
		display: inline-block;
		height: 450px;
		vertical-align: middle;
	}

	.featherlight .featherlight-content {
		/* make content container for positioned elements (close button) */
		position: relative;

		/* position: centering vertical and horizontal */
		text-align: left;
		vertical-align: middle;
		display: inline-block;

		/* dimensions: cut off images */
		overflow: auto;
		padding: 25px 45px 0px 25px;
		min-height:450px;
/*		border-bottom: 25px solid transparent;*/


		/* styling */
/*		background-image:url(../img/bg.png);
		background-repeat:repeat;*/
		cursor: auto;

		/* reset white-space wrapping */
		white-space: normal;
	}
	.featherlight .featherlight-content p {
		font-size:13px;
		font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		color:#fff;
		width:680px;
		height:145px;
		overflow:hidden;
		margin-top:-25px;
		/*background-image:url(../img/bg.png);*/
		background-image:linear-gradient(to left, #c53e03, #e83606);
		background-repeat:repeat;
		padding:20px 50px 50px 50px;
		line-height: 1.7em;
	}
	
	.featherlight .featherlight-content h2 {
		font-size:25px;
		margin-top:-5px;
		width:620px;
		font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
		color:#fff;
		/*background-image:url(../img/bg.png);*/
		background-image:linear-gradient(to left, #c53e03, #e83606);
		padding:20px 50px 0px 110px;
	}

	/* contains the content */
	.featherlight .featherlight-inner {
		/* make sure its visible */
		display: block;
	}

	.featherlight .featherlight-close-icon {
		/* position: centering vertical and horizontal */
		position: absolute;
		z-index: 99;
		top: 0;
		right: 0;

		/* dimensions: 25px x 25px */
		line-height: 25px;
		width: 25px;

		/* styling */
		cursor: pointer;
		text-align: center;
		font-family: Arial, sans-serif;
		/*background: #fff;*/ /* Set the background in case it overlaps the content */
		/*background: rgba(255, 255, 255, 0.3);*/
		color: #000;
	}


	.featherlight .featherlight-image {
		/* styling */
		width: 100%;
	}


	.featherlight-iframe .featherlight-content {
		/* removed the border for image croping since iframe is edge to edge */
		border-bottom: 0;
		padding: 0;
	}

	.featherlight iframe {
		/* styling */
		border: none;
	}
}

