/*
** info
*/

.gallery .info {
	position: fixed;
	top: 0;
	left: -35em;
	width: 35em;
	height: 100%;
	color: #333;
	background: #fff;
	z-index: 998;
}

.gallery .info .name {
	width: 90%;
	font-family: 'AkzidenzGroteskRoman';
	text-transform: uppercase;
	font-weight: normal;
	text-align: center;
	font-size: 1.5em;
	line-height: 1.1em;
	letter-spacing: 0.1em;
	color: #111;
	margin-bottom: 1.5em;
}

.gallery .info .separator {
	width: 150px;
	margin: 10px auto;
	border-bottom: 1px solid #999;
}

.gallery .info .text {
	font-size: 0.9em;
}


.gallery .info .open {
	right: -45px;
	background-image: url('../images/info.png');
}

.gallery .info .close {
	right: 0px;
	background-image: url('../images/close.png');
}

.gallery .info .info-content {
	padding: 2em 1em 2em 2em;
	height: 90%;
	overflow: hidden;
}


.gallery .info .scroll-pane {
	height: 90%;
}

.gallery .info .scroll-pane .text {
	padding-right: 2em;
}

.gallery .info .jspVerticalBar {
	width: 5px;
}

.gallery .info .jspTrack {
	background: #ccc;

}

.gallery .info .jspDrag {
	background: #666;
}

/*
** images
*/

.gallery .images {
	margin: 0 auto;
}

.gallery .images .item {
	float: left;
}

/*
** player
*/

.gallery .player {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 999;
}

.gallery .player .background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: #000;
}

.gallery .player .loading {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 16px;
	z-index: 2;
	background: transparent url('../images/loading.gif') no-repeat;
}

.gallery .player .image {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}

.gallery .player .buffer {
	display: none;
}

.gallery .player .legend {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	color: #666;
	background: transparent url('../images/opacity.png');
	z-index: 4;

	font-size: 0.7em;
	letter-spacing: 0.1em;
	text-align: center;
	padding: 1em 0;
}

.gallery .navigation {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
}

.gallery .navigation .close,
.gallery .navigation .previous,
.gallery .navigation .next {
	display: block;
	position: absolute;
	top: 0;
	width: 30%;
	height: 100%;
	overflow: hidden;
	text-indent: 100%;
	cursor: pointer;
	background: #000;
	opacity : 0;
	-moz-opacity : 0;
	-ms-filter: "alpha(opacity=0)";
	filter : alpha(opacity=0);
}

.gallery .navigation .close {
	left: 30%;
	width: 40%;
	z-index: 5;
	cursor: url('../images/cursor-close.png'), crosshair;
}

.gallery .navigation .previous {
	left: 0;
	z-index: 6;
	cursor: url('../images/cursor-previous.png'), crosshair;
}

.gallery .navigation .next {
	right: 0;
	z-index: 7;
	cursor: url('../images/cursor-next.png'), crosshair;
}

