/**
 * Featherlight Gallery – an extension for the ultra slim jQuery lightbox
 * Version 0.3.1 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2014, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
@media all {
	.featherlight-next,
	.featherlight-prev {
		display: block;
		position: fixed;
		top: 0; bottom: 0;
		left: 80%;
		right: 0;
		cursor: pointer;
		/* preventing text selection */
		-webkit-touch-callout: none;
		-webkit-user-select: none;
		-khtml-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		width:96px;
	}

	.featherlight-prev {
		left: 0px;
		right: auto;
	}
	.featherlight-next {
		left: auto;
		right: 0px;
	}

	.featherlight-next:hover,
	.featherlight-prev:hover {
		
	}


	.featherlight-next span,
	.featherlight-prev span {
		display: inline-block;
		position: absolute;

		top: 50%;
		left: 0px;
		
		width: 100%;
		text-align: center; /* center horizontally */

		font-size: 52px;
		line-height: 80px;
		margin-top: -40px; /* center vertically */
		overflow:hidden;
		text-align:center;
		line-height:62px;
		color:white;
		width:64px;
		height:64px;
		font-style: normal;
		font-weight: normal;
	}
	.featherlight-next span {
		text-indent:4px;
		right:0px;
		left:auto;
	}



}