/*
 * photoswipe.css
 * Copyright (c) %%year%% by Code Computerlove (http://www.codecomputerlove.com)
 * Licensed under the MIT license
 */
 
body.ps-active, body.ps-building, div.ps-active, div.ps-building
{
	background-color: #000;
	overflow: hidden;
}
body.ps-active *, div.ps-active *
{ 
	-webkit-tap-highlight-color:  rgba(255, 255, 255, 0); 
	display: none;
}
body.ps-active *:focus, div.ps-active *:focus 
{ 
	outline: 0; 
}


/* Document overlay */
div.ps-document-overlay 
{
	background-color: #000;
}


/* UILayer */
div.ps-uilayer { 
}

/* Zoom/pan/rotate layer */
div.ps-zoom-pan-rotate{
	background: #FFF;
}
div.ps-zoom-pan-rotate *  { display: block; }


/* Carousel */
div.ps-carousel-item-loading 
{ 
	/*background: url(loader.gif) no-repeat center center; 
	display:none;*/
}

div.ps-carousel-item-error 
{ 
	background: url(error.gif) no-repeat center center; 
}

div.ps-carousel-item img {
	-webkit-border-radius: 0px;
	   -moz-border-radius: 0px;
	        border-radius: 0px;
	padding: 0px;
	margin-left: 0px;
	background: #000;	
}
div.ps-carousel-item-title 
{ 
	background: #e2e2e2; 
}

/* Caption */
div.ps-caption
{ 
	background-color: rgba(0,0,0,0.5);	
	font-family: my_font_light; 
	font-size: 12px;
	color: #FFF;
	text-align: center;
	height: 26px;
}
div.ps-caption *  { display: inline; }

div.ps-caption-content
{
	display: block;
	position: relative;
	top: 45%;
}
/* Toolbar */
div.ps-toolbar
{ 
	background-color: rgba(255,0,0,0);	
	text-align: center;
	height: 100%;
	display: table;
	table-layout: fixed;
}
div.ps-toolbar * { 
	display: block;
}

div.ps-toolbar-top 
{
	border-top: none;
}

div.ps-toolbar-close, div.ps-toolbar-info, div.ps-toolbar-previous, div.ps-toolbar-next, div.ps-toolbar-play
{
	cursor: pointer;
	display: table-cell;

}

div.ps-toolbar-close
{
	float: right;
	margin: 10px 5px 0 0px;	
}
div.ps-toolbar-info
{
	float: left;
}

div.ps-toolbar div div.ps-toolbar-content
{
	width: 12px;
	height: 12px;
	margin: 0 auto 0;
	background-image: url(thumbs.png);
	background-repeat: no-repeat;
}

div.ps-toolbar-close div.ps-toolbar-content
{
	background-position: 0 0;
}


/* Hi-res display */
/*
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (-moz-min-device-pixel-ratio: 1.5),
       only screen and (min-resolution: 240dpi)
{
	div.ps-toolbar div div.ps-toolbar-content
	{
		-moz-background-size: 220px 88px;
		-o-background-size: 220px 88px;
		-webkit-background-size: 220px 88px;
		background-size: 220px 88px;
		background-image: url(icons@2x.png);
	}
}
*/

/* Nav Arrows */

div.ps-Nav, div.ps-Nav * {
	display: block;
}

.arrows-nav {
	opacity: .7;	
}
.arrows-nav:hover {
	opacity: 1;	
	-webkit-transition: opacity 0.3s;
	-moz-transition: opacity 0.3s;
	-o-transition: opacity 0.3s;
	transition: opacity 0.3s;	
}
div.ps-toolbar-previous-disabled,
div.ps-toolbar-next-disabled{
	display: none !important;
}


.arrows-prev span, .arrows-next span {
	background-image: url('gallery_arrows.png');
}

.arrows-prev {
	position: fixed;
	left: 0px;
}

.arrows-next {
	position: fixed;
	right: 0px;
}

.arrows-nav{
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	cursor: pointer;
	text-decoration: none;
	background: transparent url('blank.gif');
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	z-index: -1;
	padding: 0;
	margin: 0;
	border: 0;
	outline: none;
	vertical-align: top;
}

.arrows-nav span {
	position: absolute;
	top: 50%;
	width: 36px;
	height: 34px;
	margin-top: -18px;
	cursor: pointer;
	visibility: visible;
}

.arrows-prev span {
	left: 10px;
	background-position: 0 -36px;
}

.arrows-next span {
	right: 10px;
	background-position: 0 -72px;
}

