/* imgbox */

#lbOverlay {
	position: fixed;
	z-index: 9998;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
	cursor: pointer;
	display:flex;   /*other values | flex | inline-flex*/
	flex-direction:row; /*row | row-reverse | column | column-reverse*/
	flex-wrap:wrap; /*nowrap | wrap | wrap-reverse*/
	justify-content:space-around; /*flex-start | flex-end | center | space-between | space-around*/
	align-items:center; /*flex-start | flex-end | center | baseline | stretch*/
}
#lbCloseLink,
#lbPrevLink, 
#lbNextLink{
	position: absolute;
	top:0px;
	display:flex;
	font-weight:200;
	color: rgba(255, 255, 255, 0.0);
}
#lbCloseLink {
	z-index:9999;
	right:0px;
	justify-content:flex-end;
	width:15%;
	height:15%;
	padding-top:10px;
	padding-right:10px;
	font-size:24px;
}
#lbPrevLink, #lbNextLink {
	align-items:center;
	height:100%;
	width:50%;
	outline:none;
	font-size:60px;
}
#lbPrevLink{
	padding-left:10px;
	justify-content:flex-start;
}
#lbNextLink{
	right:0;
	padding-right:10px;
	justify-content:flex-end;
}
#lbCloseLink:hover,
#lbPrevLink:hover,
#lbNextLink:hover{
	color: rgba(255, 255, 255, 0.7);
	text-shadow:3px 3px 4px #000;
}
#lbNextLink:hover{
}
#lbBottom{
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	color: #FFF;
	line-height: 2em;
	text-align:  center;
	border:  none;
	border-top-style: none;
	background-color: #000;
}
#lbCaption, #lbNumber{
	margin:0pxpx;
	font-size:2.2em;
}
#lbCaption{
	font-weight:  normal;
	padding-bottom:5px;
}
#lbCaption p{
	margin:0px;
	padding-top:5px;
	margin-bottom:0px;
}
#lbCaption .photocaption{
}
#lbNumber{
	display: none; 
}
#ImgBoxBackgroundOverlay{
	position: fixed;
	z-index: 998;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}
#imgBox{
	position:relative;
	vertical-align:central;
	z-index: 999;
	background-color: transparent;
	width: 98%;
	margin:0px auto;
}
#imgBoxImage{
	width:100%;
	height:auto;
	
}
