#thumbBox { /*Outermost DIV for thumbnail viewer*/
	position: absolute;
	left: 0;
	top: 0;
	width: auto;
	padding: 5px;
	background: #fff;
	visibility: hidden;
	z-index: 10;
	cursor: hand;
	cursor: pointer;
	box-shadow:0 0 10px #777;
}
#thumbImage img {
	width:100%;
}
#thumbBox .footerbar { /*Footer DIV of thumbbox that contains "close" link */
	position:absolute;
	top:-10px;
	right:-10px;
	box-shadow:0 0 3px #666;
	border-radius:50%;
}
#thumbBox #thumbImage { /*DIV within thumbbox that holds the enlarged image */
}
#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;
}
a.thumb1 {
	position:relative;
	float:left;
	width:99.5%;
	border:1px solid #f4f4f4;
}
a.thumb1:hover {
	background:#eab428;
}
a.thumb1 b {
	display:none;
}
a.thumb1 img.thumb_img {
	float:left;
	width:100%;
}
a.thumb1:hover img.thumb_img {
	opacity:0.5;
}
a.thumb1:hover b {
	display:block;
	z-index:5;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-20px;
	margin-top:-25px;
}

@media screen and (max-width: 1000px){
#thumbBox{ width:95%; left:10px!important;}
}
