@charset "UTF-8";
/**
Fixing bootstrap columns for safari
 */
.row:before, .row:after{
 display: inline-block !important;
}

#toggle-button{
	width: 30px;
	height: 30px;
	background-color: #F2F2F2;
	background-image : url('./../images/back_arrow.png');
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	border: 1px solid #A4A4A4;
	border-left: 0;
	position: fixed;
	margin-top: 20px;
	z-index: 999;
}

#toggle-button.toggled{
	width: 30px;
	height: 30px;
	background-color: #F2F2F2;
	background-image : url('./../images/forward_arrow.png');
	background-size: 20px 20px;
	background-repeat: no-repeat;
	background-position: center center;
	border: 1px solid #A4A4A4;
	border-left: 0;
	position: fixed;
	margin-top: 20px;
	z-index: 999;
}

#content{
    width: 100%;
    height: calc(100% - 185px);
    position: fixed;
    top: 56px;
    /* overflow-y: scroll; */
}

#left{
    width: 300px;
    height: calc(100% - 185px);
    position: fixed;
    overflow-y: auto;
    word-break: break-all;
    /* -ms-overflow-style : none; */
}

#right{
    width: calc(100% - 300px);
    height: calc(100% - 185px);
    float: right;
    /* position: relative; */
    position: fixed;
    margin-left: 300px;
    overflow-y: auto;
}

/* toggled class */
#content.toggled #left{
    margin-left: -300px;
}

#content.toggled #right{
    width: 100%;
    margin-left: 0px;
}

#banner_images{
	width: auto;
	height: auto;
}

@media (max-width: 936px) {
	#banner_images{
		width: 100%;
	}
}

/* responsible media query*/
@media (max-width: 768px){
    #left{
        margin-left: -300px;
    }

    #right{
        width: 100%;
        margin-left: 0;
    }
    
    /* toggled class */
    #content.toggled #left{
    	margin-left: 0px;
    }
    
    #content.toggled #right{
    	width: calc(100% - 300px);
    	margin-left: 300px;
    }
    
    /* toggle-button 화살표 아이콘 방향 조정*/
    #toggle-button{
    	background-image : url('./../images/forward_arrow.png');
		background-size: 20px 20px;
		background-repeat: no-repeat;
		background-position: center center;
    	
    }

    #toggle-button.toggled{
    	background-image : url('./../images/back_arrow.png');
		background-size: 20px 20px;
		background-repeat: no-repeat;
		background-position: center center;
    	
    }

}

@media (max-width: 576px) {
	#left{
		height: calc(100% - 106px);
	}
	#right{
		height: calc(100% - 106px);
	}
}

/* 트리메뉴 토픽 줄바꿈 css */
.dynatree-title
{
	width: 200px; 
	white-space: normal;
	word-break: keep-all;
}

