

/*****************************************************************
서브페이지 > 레이아웃
*****************************************************************/
/* 서브페이지 상단여백 */
#sub_wrap {
    margin-top: 0px;
}

#contentsArea {
    max-width: 100%;
    text-align: left;
    background-color: #fff;
    margin-top: 0px;
}
#contentsArea img {
    max-width: 100%;
}


/*****************************************************************
서브페이지 > 상단이미지 : 공통
*****************************************************************/
/* 상단배경이미지 */
.nt_imgArea {
    width: 100%;
    height: 200px;
    background-color: #fff;
    overflow: hidden;
    margin: 100px 0 0 0;
    text-align: center;
    display: table;
}
.nt_imgArea .con {
    width: 100%;
    background-position: center center;
    background-size: cover;/* 사용값 : cover, auto */
    animation-name: zoom;
    animation-duration: 2s;
    animation-delay: 1.5s;
    animation-iteration-count: 1;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    display: table-cell;
    vertical-align: middle;
    transform: scale(1.1, 1.1);
}
.nt_imgArea .con:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
   
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.1);
}

@keyframes zoom {
    from {
        transform: scale(1.1, 1.1);
    }
    to {
        transform: scale(1.0, 1.0);
    }
}

/* 설명텍스트 */
.nt_imgArea .con p {
    display: block;/* 사용값 : none, block */
    max-width: 1300px;
    margin: 0 auto;
    padding: 0px 15px 0;/* 여백조절 */
    text-align: center;/* 위치조절 : left, center, right */
    font-size: 1.5em;
	font-weight: 100;
    color: rgba(255, 255, 255, 1);
}

@media screen and (max-width: 991px) {
    .nt_imgArea {
        height: 180px;
    }
}

@media screen and (max-width: 768px){
    .nt_imgArea .con p{
         font-size: 16px;
    }
}



/*****************************************************************
서브페이지 > 현재위치
*****************************************************************/
.n_position {
    max-width: 1300px;
    padding-right: 15px;
    margin: 10px auto 0;
    text-align: right;
    font-size: 0.875em;
    font-weight: 300;
    color: #333;
    display: block;/* none, block */
}
.n_position img {
    padding-right: 5px;
}

/* 본문내용 */
.n_contents {
    margin: 0px 0 50px;/**/
}

@media screen and (max-width: 991px) {
    .n_position {
        display: none;
    }
}






/*****************************************************************
서브페이지 > 페이지메뉴 공통
*****************************************************************/
.pageMenu {
    max-width: 230px;
    margin: 0px 0px;
    text-align: center;
    overflow: hidden;
}

.pageMenu h2 {
    background-color: #1F2B63;
    width: 100%;
    height: 80px;
    line-height: 80px;
    margin-bottom: 1px;
    font-size: 1.125em;
    font-weight: 700;
    color: #fff;
}
.pageMenu ul {
    overflow: hidden;
    width: 100%;
    border-top: 1px solid #ddd;
}
.pageMenu ul li,
.pageMenu #leftoff,
.pageMenu #lefton {
/*    float: left;*/
    width: 100%;/* 12.5%, 100% */
    padding: 0px !important;
}
.pageMenu ul li a,
.pageMenu #leftoff a,
.pageMenu #lefton a {
    -webkit-transition: all 0.1s ease-out;
    transition: all 0.1s ease-out;
    display: block;
    height: 50px;
    line-height: 50px;
    padding: 0 0px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid #ddd;
    border-width: 0px 1px 1px 1px;
    box-sizing: border-box;
    letter-spacing: -0.5px;
    font-size: 0.875em;
    color: #333;
}

.pageMenu ul li:hover a,
.pageMenu #leftoff:hover a {
    background-color: #eee;
    color: #000;
}
.pageMenu ul li.on a,
.pageMenu #lefton a {
    background-color: #ddd;
    box-sizing: border-box;
    color: #111;
    font-weight: 700;
    position: relative;
}

/* 내용영역 */
@media screen and (max-width: 991px) {
    .n_contents > .container > .row > div {
        width: 100%;
    }
    
    /* 페이지메뉴 숨김 */
    .n_contents > .container > .row > div.col-sm-3 {
        display: none;
    }
    .n_contents > .container > .row > div.col-sm-3 > .pageMenu {
        max-width: 100%;
    }
}



/*****************************************************************
서브페이지 > 배너
*****************************************************************/
.left_banner {
    max-width: 230px;
    margin-top: 10px;
    text-align: left;
    display: block;/* none, block */
}
.left_banner a {
    display: inline-block;
    margin-top: 5px;
}
.left_banner img {
    width: 100%;
}

.left_banner.on {
    display: none;
}

@media screen and (max-width: 991px) {
    .left_banner {
        display: none;
    }
}



/*****************************************************************
서브페이지 > 셀렉트
*****************************************************************/
.left_select {
    max-width: 230px;
    display: block;/* none, block */
}
.left_select select {
    margin-top: 10px;
    border-radius: 2px;
    font-size: 0.875em;
}

.left_select.on {
    display: none;
}

@media screen and (max-width: 991px) {
    .left_select select {
        display: none;
    }
}



/*****************************************************************
서브페이지 > 페이지 타이틀
*****************************************************************/
.n_tit_page {
    margin: 0 0 10px;
    padding: 26px 0;
    text-align: left;
    position: relative;
    color: #111;
    border: 0px solid #1F2B63;
}
.n_tit_page:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 30px;
    height: 3px;
    background-color: #111;
}

.n_tit_page h2 {
    font-weight: 300;
    font-size: 2.0em;
    color: #111;
}
.n_tit_page p {
    padding: 10px 0;
    line-height: 110%;
    font-size: 0.875em;
    font-weight: 100;
    color: #aaa;
}

@media screen and (max-width: 991px) {
    .n_tit_page {
        margin-top: 20px;
    }
}





/*****************************************************************
de_module : 디자인모듈
*****************************************************************/
.de_module,
.n_board_txt,
.n_board_gallery {
/*    border: 10px solid #1F2B63;*/
}









