/*
 * @author:	Peter Slagter
 * @about: JavaScript slideshow with photo's, text and links
 */

/*
	Resets & defaults
*/
.has-js .pb-gallery-type1 {
	visibility: hidden;
}

.pb-gallery-type1 {
	position: relative;
}

.pb-gt1-photos li a {
	width: 100%;
	height: 100%;
}

/* List-reset (margin, padding & list-style) */
.pb-gt1-photos,
.pb-gt1-nav {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

/* Absolute positioning */
.pb-gt1-photos img,
.pb-gt1-nav,
.has-js .pb-gt1-photos li,
.pb-gt1-photos li a {
	position: absolute;
}

/*
	.pb-gallery-photos
	List with photo's & titles
*/
.pb-gt1-photos,
.pb-gallery,
.pb-gt1-photos li {
	width: 100%;
	height: 100%;
}

.pb-gt1-photos {
	position: relative;
}

.pb-gt1-photos li {
	position: relative;
	overflow: hidden;
}

.pb-gt1-photos a,
.pb-gt1-photos span {
	cursor: pointer;
}

.has-js .pb-gt1-photos li {
	top: 0;
	left: 0;
	z-index: 5;
}

.pb-gt1-photos img {
	top: 0;
	left: 0;
	z-index: 10;
}

/* Photo descriptions */
.pb-gt1-desc {
	position: relative;
	top: 0;
	padding: 5px 10px;
	line-height: 1.15em;
	border-left: 0;
	border-right: 0;
	color: #fff;
	background: transparent url(../img/photocollection-type1-desc.png) repeat 0 0;
	z-index: 20;
}

.pb-gt1-desc p {
	margin: 0;
}

.pb-gt1-desc a {
	text-decoration: none;
}

.pb-gt1-notext .pb-gt1-desc * {
	visibility: hidden;
}

/*
	.pb-gt1-nav
	Gallery navigation
*/
.pb-gt1-nav {
	bottom: 10px;
	right: 10px;
	z-index: 30;
}

.pb-gt1-nav li {
	float: left;
}

.pb-gt1-nav a {
	display: block;
	float: left;
	min-width: .6em; /** Make narrow buttons square */
	margin-right: 1px;
	padding: 0 5px;
	text-decoration: none;
	color: #ccc;
	background: transparent;
	background-color: rgba(0,0,0,0.6);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#75000000', endColorstr='#000000',GradientType=0 );
	border: 1px solid transparent;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

.pb-gt1-nav a:hover,
.has-js .pb-gt1-nav .active a {
	border-color: #444;
	color: #fff;
	background-color: #000;
	background-image: url(../img/bg-gradient.png);
}