#thumbBox { /*Outermost DIV for thumbnail viewer*/
	position: absolute;
	left: 0;
	top: 0;
	background: #f9f9f9;
	border-radius: 10px;
	box-shadow: 0px 2px 8px hsla(0, 0%, 0%, 0.5);
	cursor: pointer;
	padding: 10px 10px 0px;
	visibility: hidden;
	width: auto;
	z-index: 10;
}
#thumbBox .footerbar { /*Footer DIV of thumbbox that contains "close" link */
	color: black;
	font-size: 10px;
	font-weight: bold;
	letter-spacing: 1px;
	padding: 1px 0 3px;
	text-align: right;
	text-shadow: 2px 2px 3px hsla(0, 0%, 0%, 0.5);
}
#thumbBox #thumbImage { /*DIV within thumbbox that holds the enlarged image */
}
#thumbBox img {
	border: 1px inset black;
}
#thumbLoading { /*DIV for showing "loading" status while thumbbox is being generated*/
	background-color: #efefef;
	border: 1px solid black;
	padding: 5px;
	position: absolute;
	visibility: hidden;
	z-index: 5;
}
