/* 좌우 사이드배너 공통 */
.outerWrapper_layerLeft,
.outerWrapper_layerRight {
    position: absolute;
    height: auto;
    padding: 10px;
    box-sizing: border-box;
    overflow: visible;
    z-index: 10;
}

/* 왼쪽 사이드배너: 스크롤 따라다님 */
.outerWrapper_layerLeft {
    position: fixed !important;
    top: 124px !important;
    left: 20px !important;
    right: auto !important;
    width: 280px !important;
    height: auto !important;
    padding: 10px !important;
    overflow: visible !important;
    z-index: 50 !important;
    box-sizing: border-box !important;
}

/* 오른쪽 사이드배너: 제자리 고정 */
.outerWrapper_layerRight {
    position: absolute !important;
    top: 30px !important;
    right: 60px !important;
    left: auto !important;
    width: 290px !important;
    height: auto !important;
    padding: 10px !important;
    overflow: visible !important;
    z-index: 50 !important;
    box-sizing: border-box !important;
}

/* 배너 이미지 */
.outerWrapper_layerLeft p img,
.outerWrapper_layerRight p img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* 창이 조금만 줄어도 바로 숨김 */
@media (max-width: 1400px) {
    .outerWrapper_layerLeft,
    .outerWrapper_layerRight {
        display: none !important;
    }
}