/* GNB 누리집 */
.top .topCont {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top .topCont .egLogo {
	font-size: 12px;
	height: 30px;
	line-height: 30px;
	padding-left: 50px;
	background-image: url('/common/site/www/front/images/common/eg_logo.png');
	background-position: 0 50%;
	background-repeat: no-repeat;
}

/* 메뉴 */
.navi .menuCont .depth1>a>span {
	display: inline-block;
	height: 47px;
	border-bottom-style: solid;
	border-bottom-width: 5px;
	border-bottom-color: #45C3D300;
	transition: all 0.1s;
}

.navi .menuCont .depth1>a:not(.active):hover>span {
	border-bottom-color: #45C3D3FF;
}

.navi .menuCont .depth1>a.active>span {
	border-bottom-color: #45C3D3;
	color: #006AB6;
}

/* 게시판 byte 표시 */
.showBytes {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 5px 0;
	font-size: 12px;
}

/* input readonly/disabled */
input:read-only,
input:disabled {
	background-color: rgba(0, 0, 0, 0.04);
}