/*outermost div for thumbnail viewer*/

#thumbBox {
	position: absolute;
	left: 0;
	top: 0;
	width: auto;
	padding: 20px;
	padding-bottom: 0;
	border: none;
	visibility: hidden;
	z-index: 10;
	cursor: pointer;
	background-color: #653a71;
}

#thumbBox img {
  border: none;
}

/*footer div of thumbbox that contains "close" link */

#thumbBox .footerbar {
	letter-spacing: 5px;
	line-height: 1.1em;
	color: white;
	padding: 5px;
	text-align: right;
	font-family: "Comic Sans MS", cursive;
	font-size: 12px;
	font-weight: bold;
}

/*div within thumbbox that holds the enlarged image */

#thumbBox #thumbImage {
	background-color: #AC2731;
	color: #FFFFFF;
	text-align: center;
	padding: 15px;
	font-family: Arial, Helvetica, sans-serif;
}

/*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;
}
