/*
 * PhotoSwipe - http://www.photoswipe.com/
 * Copyright (c) 2011 by Code Computerlove (http://www.codecomputerlove.com)
 * Licensed under the MIT license
 *
 * Default styles for SwipeGallery
 * Avoid any position or dimension based styles
 * where possible, unless specified already here.
 * The gallery automatically works out gallery item
 * positions etc.
 */

body.ps-active 
{
	-webkit-text-size-adjust: none;
	overflow: hidden;
}
body.ps-active * 
{ 
	-webkit-tap-highlight-color:  rgba(255, 255, 255, 0); 
}
body.ps-active *:focus 
{ 
	outline: 0; 
}


/* Document overlay */
div.ps-document-overlay 
{
	background: #000;
}


/* Viewport */
div.ps-viewport 
{
	background: #000;
	cursor: pointer;
}


/* Zoom/pan/rotate layer */
div.ps-zoom-pan-rotate{
	background: #000;
}


/* Slider */
div.ps-slider-item-loading 
{ 
	background: url(photoswipe-loader.gif) no-repeat center center; 
}

::-webkit-scrollbar { 
    display: none; 
}

/* Caption */
div.ps-caption
{ 
	background: rgba(0,0,0,0.7);
	color: #ffffff;
	font-size: 14px;
	text-align: left;
	text-indent: 40px;
	text-transform: capitalize;
	top:auto!important;
	bottom:0!important;
	text-shadow:0 1px 0 #000;
	display:block;
	position:fixed!important;
}

.ps-caption-content:after{
	content:".";
}

div.ps-caption-bottom
{ 
	border-top: 1px solid #42403f;
	border-bottom: none;
}

div.ps-caption-content
{
	padding: 13px;
}


/* Toolbar */
div.ps-toolbar
{ 
	background:transparent;
	color: #ffffff;
	font-family: "vollkorn", "helvetica neue",Helvetica, Arial,Verdana, sans-serif;
	text-align: center;
	height: 44px;
	display: table;
	table-layout: fixed;
	display:block!important;
	z-index:99999999!important;
}

.ps-toolbar{
	font-size:9px!important;
	text-transform: uppercase;
	line-height: 40px;
	font-family: "helvetica"!important;
}

.ps-toolbar-previous{
	position:fixed;
	bottom:0;
	right:120px;
	width:60px;
	height:40px;
	margin-top:-0px;
	background-size:20px 20px;

}

.ps-toolbar-previous:after{
	content:"Previous"
}

.ps-toolbar-next{
	position:fixed;
	bottom:0;
	right:54px;
	width:60px;
	height:40px;
	margin-top:0px;

}

.ps-toolbar-next:after{
	content:"Next";
}

.ps-toolbar-close{
	position:fixed;
	bottom:0px;
	right:0px;
	width:60px;
	height:40px;
	margin-top:0px;
}

.ps-toolbar-close:after{
	content:"Close";
}

.ps-toolbar-previous:hover,.ps-toolbar-next:hover,.ps-toolbar-close:hover{
	opacity:0.5;	
	-moz-transition:all 0.4s ease;
	-webkit-transition:all 0.4s ease;
	-ms-transition:all 0.4s ease;
	-o-transition:all 0.4s ease;
	transition:all 0.4s ease;
}

div.ps-toolbar-top 
{
	border-bottom: 1px solid #42403f;
	border-top: none;
}

div.ps-toolbar-close, div.ps-toolbar-previous, div.ps-toolbar-next, div.ps-toolbar-play
{
	cursor: pointer;
	display: table-cell;
}

@media only screen and (max-width:600px){

.ps-toolbar-previous,.ps-toolbar-next,.ps-toolbar-close{
	width:33.333%;
	text-align: center;
}

.ps-toolbar-previous{
	right:66.666%;
}

.ps-toolbar-next{
	right:33.333%;
}

.ps-toolbar-close{
	right:0;
}

div.ps-caption
{ 
	text-align: center;
	text-indent: 0;
	top:0!important;
	bottom:auto!important;
}
	
}