@charset "utf-8";
/* CSS Document */

#lightboxOverlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
z-index:1001;
filter:alpha(opacity=0);
opacity: 0;
background-color:black;
display:none;
}
#lightboxContentAnchor{
position:fixed;
top:50%;
left:50%;
overflow:visible;
z-index:1002;
}
#lightboxContent{
position:absolute;
z-index:1003;
width:350px;
height:300px;
top:-150px;
left:-175px;
filter:alpha(opacity=0);
opacity: 0;
background-color:white;
background-image:url(images/lightboxGraphic.png);
display:none;
background-color:#A1A1A1;
}
#lightboxClose{
width:26px;
height:26px;
float:right;
margin:10px 10px 0 0;
clear:both;
}
#lightboxContent a{
display:block;
width:100%;
height:100%;
}
#lightboxLink{
float:right;
width:350px;
height:264px;
}
* html #lightboxOverlay { /* ie6 hack, courtesy of ThickBox, see http://jquery.com/demo/thickbox/ */
position: absolute;
height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}
* html #lightboxContentAnchor { /* ie6 hack, courtesy of ThickBox, see http://jquery.com/demo/thickbox/ */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');*/
}
