
/*outermost div for thumbnail viewer*/

#thumbBox { 
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  padding: 20px;
  padding-bottom: 0;
  background: #999999;
  border: none;
  visibility: hidden;
  z-index: 10;
  cursor: pointer;
}

#thumbBox img {
  border: none;
}

/*footer div of thumbbox that contains "close" link */

#thumbBox .footerbar {
  font: bold 12px verdana;
  letter-spacing: 5px;
  line-height: 1.1em;
  color: white;
  padding: 5px;
  text-align: right;
}

/*div within thumbbox that holds the enlarged image */

#thumbBox #thumbImage {
  background-color: black;
  color: #FFFFFF;
  text-align: center;
  padding: 15px;
}

/*div for showing "loading" status while thumbbox is being generated*/

#thumbLoading {
  position: absolute;
  visibility: hidden;
  border: 1px solid black;
  background-color: #666666;
  padding: 5px;
  color: #FFFFFF;
  z-index: 5;
}

