@charset "utf-8";
/* LIGHT BOX */

div.lightboxSwitch {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index:200;
}
/**
div.lightboxSwitch:target {
  display: block;
}
 IE doesn't support :target, so we use CSS expressions 
div.lightboxSwitch {
  display: expression((document.location.toString().split('#').slice(1) == this.id)?'block':'none');
}
**/
div.lightboxBkgd {
  display: ;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 250%;
  width: 100%;
  text-align: center;
  z-index:200;
  background-color: #000000;
  opacity: .60; /*FOR ALL OTHER BROWSERS AND DEVICES*/
  filter: alpha(opacity=60); /*FOR IE7*/
}
div.lightboxContent {
  display: ;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  z-index:205;
}

table.lightBoxTable {
	width:100%;
	height:100%;
	}
	
img.lightBoxImg {
	border: 0px solid #000000;
}
