/* SLIMBOX */

#lbOverlay {
	position: fixed;
	z-index: 9999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #59544E;
	cursor: pointer;
}

#lbCenter, #lbBottomContainer {
	position: absolute;
	z-index: 9999;
	overflow: hidden;
	background-color: #FFFFCF;
}

.lbLoading {
	background: #FFFFCF url(loading.gif) no-repeat center;
}

#lbImage {
	position: absolute;
	left: 0;
	top: 0;
	border: 3px solid #FFFFCF;
	background-repeat: no-repeat;
}

#lbPrevLink, #lbNextLink {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
	outline: none;
}

#lbPrevLink {
	left: 0;
}

#lbPrevLink:hover {
	background: transparent url(prevlabel.gif) no-repeat 0 15%;
}

#lbNextLink {
	left: 50%;
}

#lbNextLink:hover {
	background: transparent url(nextlabel.gif) no-repeat 100% 15%;
}

#lbBottom {
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	font-size: 10px;
	color: #666;
	line-height: 1.4em;
	text-align: left;
	border-top-style: none;
	background-color: #393A3C;
	border-top-width: 10px;
	border-right-width: 10px;
	border-bottom-width: 10px;
	border-left-width: 10px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #393A3C;
	border-right-color: #393A3C;
	border-bottom-color: #393A3C;
	border-left-color: #393A3C;
	padding-top: 5px;
}

#lbCloseLink {
	display: block;
	float: right;
	width: 66px;
	height: 22px;
	margin: 5px 0;
	outline: none;
	background-color: transparent;
	background-image: url(closelabel.gif);
	background-repeat: no-repeat;
	background-position: center;
}

#lbCaption, #lbNumber {
	margin-right: 71px;
}

#lbCaption {
	font-weight: bold;
}

#lbBottom a {
	color: #8EAABF;
	text-decoration: none;
}
#lbBottom a:hover {
	text-decoration: underline;
}

/* --- Mobile lightbox fixes --- */
@media (max-width: 767px) {
	#lbPrevLink, #lbNextLink {
		opacity: 1;
	}
	#lbPrevLink::after, #lbNextLink::after {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		font-size: 40px;
		color: #FFF;
		text-shadow: 0 0 8px rgba(0,0,0,0.7);
		opacity: 0.6;
	}
	#lbPrevLink::after {
		content: "\2039";
		left: 10px;
	}
	#lbNextLink::after {
		content: "\203A";
		right: 10px;
	}
	#lbBottom {
		border-width: 5px;
	}
}
