/* CSS Document */
a
{
color: #656565;
text-decoration: underline;
}

#thumbBox
{ /*Outermost DIV for thumbnail viewer*/
position: absolute;
padding: 10px 20px 10px 20px;
left: 0;
top: 0;
width: 800px;
background: #423E39;
border: 1px solid black;
visibility: hidden;
z-index: 10;
cursor: hand;
cursor: pointer;
text-align: center;
font-family: "trebuchet MS", arial, sans-serif;
font-size: 0.8em;
}

#thumbImage
{ /*DIV within thumbbox that holds the enlarged image */
padding: 20px 20px 10px 20px;
margin: 0 auto 0 auto;
width: 700px;
background-color: #FFFFFF;
color: black;
text-align: center;
}


#thumbBox .footerbar
{ /*Footer DIV of thumbbox that contains "close" link */
padding: 15px 0 0 0;
margin: 0 auto 0 auto;
width: 800px;
line-height: 1.1em;
color: #8D8575;
text-align: right;
}

#thumbBox .headerbar
{ /*Hearder DIV of thumbbox that contains "X" link */
padding: 1px 0 15px 0;
margin: 0 auto 0 auto;
width: 800px;
color: #8D8575;
text-align: right;
}

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