<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

.iBox {
	border: 1px solid #eee;
	box-shadow: 0px 0px 10px #888;
	background-color: #fff;
	border-radius: 5px;
	max-width: 96vw;
	max-height: 96vh;
}

/*.iBox .iBoxTitle.noTitle {
	min-height: 10px;
	padding: 0;
}/**/

.iBox .iBoxTitle {
	height: 50px;
	padding: 0;
	width: 100%;
	z-index: 1;
	background-color: rgba(255,255,255,0.8);
}
.iBox .iBoxTitle.noTitle {
	display: none;
}
.iBox .iBoxTitle h1 {
	margin: 0;
	padding: 15px;
}

.iBox .iBoxContentOuter {
	padding: 10px;
	max-height: calc(96vh - 70px);
	overflow-y: auto;
	position: relative;
}

.iBox .iBoxClose {
	cursor: pointer;
	position: absolute;
	right: -36px;
	top: 5px;
	width: 30px;
	height: 30px;
	transform-origin: 50% 50%;
	transform: rotate(45deg);
	border-radius: 100%;
	opacity: 0.6;
}
.iBox .iBoxClose:before,
.iBox .iBoxClose:after {
	content: '';
	position: absolute;
	background: black;
	width: 100%;
	height: 10%;
	top: 45%;
}
.iBox .iBoxClose:after {
	transform-origin: 50% 50%;
	transform: rotate(90deg);
}
.iBox .iBoxClose:hover {
	opacity: 1;
}

</pre></body></html>