.zoombox-overlay{
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: black;
    z-index:1001;
    -moz-opacity: 0.75;
    opacity:.75;
    filter: alpha(opacity=75);
}
 
.zoombox-content {
    position: absolute;
    display: none;
    z-index:1002;
    overflow: auto;
    
	margin:auto;
    
    padding: 6px;
    border: 1px solid black;
    
    background-color: white;
    color:black;
    text-shadow: none;
}

.zoombox-image {
	border: 1px solid black;
	margin-bottom:6px;
}

.zoombox-label {
	display: inline-block;
	float: left;
	line-height: 32px;
	padding-left:5px;
}

.zoombox-close {
	width:120px;
	height:32px;
	display: inline-block;
	float: right;
	background-image: url('../img/zoom-out.png');
	background-position: 5px center;
	background-repeat: no-repeat;
	background-size: 24px;
	text-align: center;
	line-height: 32px;
	padding-right:5px;
}

a.zoombox-exit {
	font-weight: bold;
	color:black;
	background-color: rgba(0,0,0,0.05);
	border: 1px solid rgba(0,0,0,0.5);
	padding-left:10px;
}

a.zoombox-exit:hover {
	color:grey;
}