<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html.lb-disable-scrolling,
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../image/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container {
	width: 100%;
}

.lb-container &gt; .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}


.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 0;
  right: 60px;
  background: url(../image/prev.png) center no-repeat;
	background-color: #ebebeb;
	transition: 0.2s all linear;
}


.lb-nav a.lb-prev:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

.lb-nav a.lb-next {
	width: 60px;
	height: 60px;
	position: fixed;
	bottom: 0;
  right: 0;
  background: url(../image/next.png) center no-repeat;
	background-color: #fff;
	transition: 0.2s all linear;
}

.lb-nav a.lb-next:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 100%;
  font-weight: bold;
  line-height: 2em;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	color: #fff;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
	position: fixed;
	bottom: 0;
	right: 160px;
	font-family: 'Zen Kaku Gothic New', sans-serif;
  display: block;
  padding-bottom: 1.4em;
  font-size: 110%;
	color: #fff;
	font-weight: bold;
}

.lb-data .lb-close {
	position: fixed;
	right: 0;
	top: 0;
  display: block;
	transition: 0.2s all linear;
  width: 60px;
  height: 60px;
  background: url(../image/close.png) center no-repeat;
	background-color: #888;
  text-align: right;
  outline: none;
}

.lb-data .lb-close:hover {
  cursor: pointer;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
</pre></body></html>