/* slimbox */

#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*/
	align-content: flex-start;  /*flex-start | flex-end | center | space-between | space-around | stretch*/
}

#lbPrevLink, #lbNextLink {
	display: block;
	position: absolute;
	top: 0;
	width: 50%;
	height: 100%;
	outline: none;
}
#lbPrevLink:hover {
	background: transparent url(prevlabel.gif) no-repeat 0 15%;
}

#lbNextLink {
	right: 0;
}

#lbNextLink:hover {
	background: transparent url(nextlabel.gif) no-repeat 100% 15%;
}


#lbCloseLink {
	position: absolute;
	z-index:9999;
	top: 0;
	display: block;
	float: right;
	width: 98%;
	background: transparent url(closelabel.png) no-repeat  right;
	margin: 5px 0;
	padding-bottom:20px;
	outline: none;
	text-align:right;
	
}
#lbBottom {
	font-family: Verdana, Arial, Geneva, Helvetica, sans-serif;
	font-size: 10px;
	color: #333;
	text-align:  center;
	border:  none;
	border-top-style: none;
	background-color: rgba(255, 255, 255, 0.6);
}
#lbCaption, #lbNumber {
	margin:0pxpx;
	
}

#lbCaption {
	font-weight:  normal;
}
#lbNumber {
	display:  none; /* Show numbers  x of y */
}

#imgBox{
	position:relative;
	vertical-align:central;
	z-index: 999;
	background-color: transparent;
	width: 95%;
	max-width:1300px;
	margin:0px auto;
}
#imgBoxImage{
	width:100%;
	height:auto;
	
}
