/* library lightbox */
.library > .lightbox {
	text-align: center;
	display: none;
	position: fixed; top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba( 0, 0, 0, 0.6 );
	z-index: 99999;
}
.library > .lightbox .button {
	cursor: pointer;
	position: absolute;
	text-align: center;
	/*text-indent: -999px; overflow: hidden;*/
	display: inline-block;
	/*background-color: transparent;
	background-image: url( ../../../images/jquery-lightbox-theme.png );
	background-repeat: no-repeat;*/
	/*background: #2b2b2b;*/
	background: #fff;
	font-size: 20px;
	color: #2b2b2b;
	text-decoration: none;
}
.library > .lightbox .button.close {
	top: -10px; right: -10px;
	width: 30px; height: 22px;
	padding-top: 8px;
	background-position: -190px -115px;
	line-height: 18px;
	border-radius: 30px;
	box-shadow: 0 0 5px #000;
	vertical-align: middle;
}
/*.library > .lightbox .button.close:hover {
	background-position: -220px -115px;
}*/
.library > .lightbox .button.previous {
	top: 22px; left: -25px;
	width: 30px; height: 32px;
	padding-top: 8px;
	background-position: -151px -153px;
	line-height: 30px;
	border-radius: 5px 0 0 5px;
}
/*.library > .lightbox .button.previous:hover {
	background-position: -151px -194px;
}*/
.library > .lightbox .button.next {
	top: 22px; right: -25px;
	width: 30px; height: 32px;
	padding-top: 8px;
	background-position: -219px -153px;
	line-height: 30px;
	border-radius: 0 5px 5px 0;
}
/*.library > .lightbox .button.next:hover {
	background-position: -219px -194px;
}*/
.library > .lightbox .nav {
	position: relative;
	display: inline-block;
	min-width: 64px; min-height: 64px;
	margin: 25px auto; padding: 8px 10px;
	border-radius: 10px;
	box-shadow: 0 0 10px #000;
	background: #fff;
	/*background: #2b2b2b;*/
}
.library > .lightbox .nav .thumb {
	cursor: pointer;
	float: left;
	margin-left: 10px;
	border: 2px solid transparent;
	opacity: 0.25;
}
.library > .lightbox .nav .thumb.current {
	box-shadow: 0 0 5px #222;
	border: 2px solid #2b2b2b;
	opacity: 1;
}
.library > .lightbox .nav .thumb:first-child { margin-left: 0; }
.library > .lightbox .box {
	position: relative;
	display: inline-block;
	margin: 0 auto 50px; padding: 10px;
	border-radius: 10px;
	box-shadow: 0 0 10px #000;
	background: #fff;
}
.library > .lightbox .box .content.empty {
	width: 220px; height: 20px;
	background: transparent url( ../../../images/loader_bar_oxygen.gif ) center center no-repeat;
}
.library > .lightbox .box img {
	max-width: 100%; max-height: 100%;
}

.library > .lightbox .box .label {
	padding: 4px 0 0 0;
	word-wrap: break-word;
	font-size: 10px;
	color: #333;
}
.library > .lightbox .box .title {
	padding: 0 0 4px 0;
	font-size: 11px;
	font-weight: bold;
}
.library > .lightbox .box .filename {
	font-size: 10px;
}
.library > .lightbox .box .count {
	padding: 0 0 4px 0;
	font-size: 9px;
	text-align: center;
}
