/***********************************************
* Image Thumbnail Viewer Script- © Dynamic Drive (www.dynamicdrive.com)
* This notice must stay intact for legal use.
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

#thumbBox{ /*Outermost DIV for thumbnail viewer*/
position: absolute;
left: 0;
top: 0;
width: auto;
padding: 5px;
padding-bottom: 5px;
background: #000;
visibility: hidden;
z-index: 10;
cursor: pointer;
  font-size: 12px;
    line-height: 14px;
	text-align:center;

}



#thumbBox .footerbar{ /*Footer DIV of thumbbox that contains "close" link */
  color: #777;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 12px;
  line-height: 5px;
line-height: 1em;
padding: 0 0 5px 0;
text-align: right;
}


#thumbBox #thumbImage{ /*DIV within thumbbox that holds the enlarged image */
background-color: 000;
color:#fff;
line-height:1.2em;
}

#thumbLoading{ /*DIV for showing "loading" status while thumbbox is being generated*/
position: absolute;
visibility: hidden;
border: 1px solid black;
background-color: #000;
padding: 5px;
z-index: 5;
}

