/* Thumbnailviewer Enlarge Image Style Section Begins
----------------------------------------------------------------------------- */
#thumbBox{ /*Outermost DIV for thumbnail viewer*/
     position: absolute;
     left: 0px;
     top: 0px;
     padding: 25px;
     padding-bottom: 0px;
     background: url('transparent-bg.png') top left repeat;
     visibility: hidden;
     z-index: 1000000000;
     cursor: pointer;
}
#thumbBox .footerbar{ /*Footer DIV of thumbbox that contains "close" link */
     padding: 5px 0px;
     width:100%;
     height:20px;
}
#thumbBox .footerbar p  { 
     font: bold 16px arial;
     line-height:20px;
     margin:0px;
     float:right;
     display:inline;
     text-align:right;
     color:#ffffff;
}
#thumbBox .footerbar img  { /*Footer DIV of thumbbox that contains the red x */
     float:right;
     display:inline;
     margin:2px 0px 0px 3px;
}
#thumbBox #thumbImage{ /*DIV within thumbbox that holds the enlarged image */
     background-color: white;
     padding:15px;
     font: bold 16px verdana;
     color:#333333;
}
#thumbBox #thumbImage img{ /*DIV within thumbbox that holds the enlarged image */
     display:block;
     margin:0px auto;
}
#thumbLoading{ /*DIV for showing "loading" status while thumbbox is being generated*/
     position: absolute;
     visibility: hidden;
     border: 1px solid black;
     background-color: #EFEFEF;
     padding: 5px;
     z-index: 5;
}



