#thumbLoading { /*DIV for showing "loading" status while thumbbox is being generated*/
	position: absolute;
	visibility: hidden;
	border: 1px solid black;
	background-color: #EFEFEF;
	padding: 5px;
	z-index: 5;
}
#thumbBox { /*Outermost DIV for thumbnail viewer*/
	position: absolute;
	left: 0;
	top: 0;
	width: auto;
	margin: 0;
	padding: 10px 10px 5px 10px;
	background: #947E4F;
	color: #ffffff;
	visibility: hidden;
	z-index: 10;
}
#thumbBox #thumbImage img { /*DIV within thumbbox that holds the enlarged image */
	margin: 0 0 5px 0;
	/*background-color: white;*/
}
#thumbBox .thumbtitle {
	padding: 0;
	color: #000000;
	font-weight: bold;
}
#thumbBox .close { /*Footer DIV of thumbbox that contains "close" link */
	position: absolute;
	top: 0px;
	right: 0px;
	padding: 5px;
	font: bold 12px Tahoma;
	color: #000000;
	background: #947E4F;
	text-align: right;
	cursor: hand;
	cursor: pointer;
}