#lightboxOverlay {
	position:fixed;
	top:0;
	bottom:0;
	left:0;
	right:0;
	z-index:90;
	background-color:rgba(0,0,0,.8);
	display:none;
}

#lightbox {
	position:absolute;
	left:0;
	width:100%;
	z-index:100;
	text-align:center;
	line-height:0;
	font-family:Arial,sans-serif;
	font-weight:400;
}

#lightbox img {
	width:auto;
	height:auto;
	margin-bottom: 70px;
}

#lightbox a img {
	border:none;
}

#lightbox .outerContainer {
	position:relative;
	background-color:#fff;
	width:250px;
	height:250px;
	margin:0 auto;
	border-radius: 4px;
}

#lightbox .outerContainer:after {
	content:"";
	display:table;
	clear:both;
}

#lightbox .container {
	padding:10px;
}

#lightbox .loader {
	position:absolute;
	top:40%;
	left:0;
	height:25%;
	width:100%;
	text-align:center;
	line-height:0;
}

#lightbox .nav {
	position:absolute;
	top:0;
	left:0;
	height:100%;
	width:100%;
	z-index:10;
}

#lightbox .container > .nav {
	left:0;
}

#lightbox .nav a {
	outline:none;
}

#lightbox .prev,#lightbox .next {
	cursor:pointer;
	width:49%;
	height:100%;
	background-image:url(data:image/gif;base64,AAAA);
	/* Trick IE into showing hover */
	display:block;
}

#lightbox .prev {
	left:0;
	float:left;
}

#lightbox .next {
	right:0;
	float:right;
}

#lightbox .prev:hover {
	background:url(/static/lightbox/prev.png) left 48% no-repeat;
}

#lightbox .next:hover {
	background:url(/static/lightbox/next.png) right 48% no-repeat;
}

#lightbox .dataContainer {
	background-color:#fff;
	margin:0 auto;
	width:100%;
	border-radius: 4px;
}

#lightbox .dataContainer:after {
	content:"";
	display:table;
	clear:both;
}

#lightbox .data {
	padding:0 10px;
	color:#666;
}

#lightbox .data .details {
	width:85%;
	float:left;
	text-align:left;
	line-height:1.1em;
}

#lightbox .data .caption {
	font-size:13px;
	font-weight:700;
	line-height:1em;
}

#lightbox .data .number {
	display:block;
	clear:left;
	padding-bottom:1em;
	font-size:11px;
}

#lightbox .close {
	background:#fff;
	border-radius:100%;
	cursor:pointer;
	display:inline-block;
	float:right;
	height:31px;
	outline:none;
	padding-top:4px;
	width:36px;
}

#lightbox .closeContainer {
	display:inline-block;
	position:absolute;
	right:-10px;
	top:-10px;
	z-index:11;
}