/* CSS Document */
#thumbBox{ /*Outermost DIV for thumbnail viewer*/
position: absolute;
width: auto;
padding: 1px;
background: #c90000;
visibility: hidden;
z-index: 10;
cursor: pointer;
}

#thumbBox .footerbar{ /*Footer DIV of thumbbox that contains "close" link */
font: 12px Tahoma;
letter-spacing: 2px;
line-height: 1.0em;
color: #ffffff;
padding: 2px;
text-align: right;
background-color: #c90000;
}


#thumbBox #thumbImage{ /*DIV within thumbbox that holds the enlarged image */
background-color: #ffffff;
font: bold 12px Arial;
line-height: 1.0em;
color: #c90000;
padding: 1px;
}

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

