/* 레이어관련 */
html, body { width:100%; height:100%; margin: 0px; padding: 0px; font-size:9pt; }

.SLB_center { cursor:pointer; visibility:hidden; border: solid 0px #000000; z-index: 99999; position: relative; /* 팝업 내용은 배경보다 위에 떠야 함 */ }
.SLB_close { cursor: pointer; display:none; font-family: verdana,tahoma; font-size: 9pt; background-color:#000000; color: #ffffff; padding-bottom: 4px; }
.SLB_caption { cursor: pointer; display:none; font-family: verdana,tahoma; font-size: 9pt; background-color:#000000; color: #ffffff; padding-bottom: 4px; }

#SLB_loading {
    cursor: pointer;
    display: none;
    z-index: 99998;
    position: fixed; /* absolute -> fixed 변경: 스크롤해도 화면 중앙에 유지 */
    top: 50%;       /* 화면 세로 중앙 */
    left: 50%;      /* 화면 가로 중앙 */
    transform: translate(-50%, -50%); /* 정확한 중앙 정렬을 위한 보정 */
    font-family: verdana,tahoma;
    font-size: 9pt;
    color: #ffffff;
    padding: 3px 0px 4px 0px;
    border: solid 0px #cfcfcf;
}
#SLB_loading i { font-size:70px; color:rgba(0, 0, 0, 0.5); }

#SLB_film {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99990; /* 중요: 본문보다는 높고, 팝업보다는 낮아야 함 */
    background-color: rgba(0, 0, 0, 0.7); /* 검은색 반투명 배경 예시 */
}