/*Outermost DIV for thumbnail viewer*/

#thumbBox{
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  padding: 3px;
  padding-bottom: 0;
  background: #cccccc;
  visibility: hidden;
  z-index: 10;
  cursor: hand;
  cursor: pointer;
}

#thumbBox:hover {
  background:#f50000;
}


/*Footer DIV of thumbbox that contains "close" link */

#thumbBox .footerbar{
  font: bold 16px;
  line-height: 1.1em;
  color: white;
  padding: 5px 0;
  text-align: center;
}


/*DIV within thumbbox that holds the enlarged image */

#thumbBox #thumbImage{
  background-color: white;
}


/*DIV for showing "loading" status while thumbbox is being generated*/

#thumbLoading{
  position: absolute;
  visibility: hidden;
  border: 1px solid black;
  background-color: #EFEFEF;
  padding: 5px;
  z-index: 5;
}