@charset "UTF-8";

:root {
	--background-color: #ffffff;
	--color: #000000;
	--max-width: 1200px;
	--disabled-bg: #dee2e6;
}

/* 확인용 */
div, header {
	border: 0px solid #aaa;
}
/* 확인용 */

html, body {
	font-family: 'Nanum Gothic', 'Apple SD Gothic Neo', sans-serif;
	font-weight: 400;
	font-size: 1em;
	max-width: 100%;
	width: auto;
	margin: 0px auto;
	padding: 0px;
	box-sizing: border-box;
	background-color: var(--background-color);
	color: var(--color);
}

header {
	position: sticky;
	top: 0;
	background-color: var(--background-color);
	z-index: 999;
	border-bottom: 1px solid var(--bg-color-middle);
}

body {
	overflow: scroll;
}

a {
	text-decoration: none;
	color: var(--menu-a-color);
}
a:hover {
	text-decoration: none;
	color: var(--color);
	font-weight: 700;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}

ul:after {
	content: "";
	display: block;
	clear: both;
}

input[type="text"] {
	width: 100%;
}
input[type="password"] {
	width: 100%;
	letter-spacing: -3px;
}

pre {
	white-space: normal;
	word-wrap: break-word;
	word-break: break-all;
}

.container {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

#top {
	display: flex;
	justify-content: center;
	align-items: center;
}

#top-menu {
	display: flex;
	justify-content: space-evenly;
	width: var(--max-width);
	align-items: center;
}

#mainmenu {
	justify-content: space-between;
}

#mainmenu li a {
	display: block;
	padding: 5px 10px;
	text-decoration: none;
	color: var(--color);
}

#mainmenu li a:hover,
#mainmenu li.active,
#submenu li a:hover,
#submenu li.active,
#missa_30-collapse li a:hover,
#missa_30-collapse li.active {
	/*
	background-color: var(--bg-color-low);
	*/
	font-weight: 700;
}

.hidden {
	display: none;
}

#btnMobileMenu {
	display: none;
}

#content {
	max-width: var(--max-width);
	margin: auto;
}

#toTop {
	z-index:10;
	width: 50px;
	border: 2px solid #f7f7f7;
	background-color: #eeeeee;
	text-align: center;
	position: fixed;
	bottom: 7px;
	right: 20px;
	cursor: pointer;
	display: none;
	color: #333333;
	opacity: 0.6;
	filter: alpha(opacity=60);
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	-o-border-radius: 30px;
	border-radius: 10px;
	-webkit-transition: all .25s linear;
	-moz-transition: all .25s linear;
	-o-transition: all .25s linear;
	transition: all .25s linear;
	padding: 5px;
}

#toTop:hover {
	background-color: #b3b3b3;
	border: 2px solid #b3b3b3;
}

footer {
	max-width: var(--max-width);
	margin: auto;
}

.footer {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	border: solid 3px var(--bg-color-middle);
	border-radius: 10px;
	padding: 10px 0;
	font-size: 0.9em;
	min-width: 100%;
}

#footer_left, #footer_center, #foot_right {
	flex-direction: column;
	align-items: center;
}

#footer_right {
	width: 200px;
	display: flex;
	flex-direction: column;
}

.text-width-26 { width: 26px !important}
.text-width-40 { width: 40px !important}
.text-width-60 { width: 60px !important}
.text-width-80 { width: 80px !important}
.text-width-100 { width: 100px !important}
.text-width-120 { width: 120px !important}
.text-width-150 { width: 150px !important}
.text-width-200 { width: 200px !important }
.text-width-300 { width: 300px !important }
.text-width-780 { width: 780px !important } /* 게시판 제목 */

.text-width-25p { width: 25% !important;}
.text-width-50p { width: 50% !important;}
.text-width-75p { width: 75% !important;}
.text-width-100p { width: 100% !important; }

/*---------------------------------------------------------------*/

aside {
	float: left;
	width: 130px;
	font-size: 0.9em;
}

aside nav ul li a {
	display: block;
	padding: 5px 5px;
	text-decoration: none;
}

/* \f285 : Chevron right */
aside nav ul li a:before {
	content: "\f285";
	padding-right: 3px;
	display: inline-block;

	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/*---------------------------------------------------------------*/

#right {
	width: auto;
	margin-left: 130px;
}

article {
	float: left;
	width: 100%;
	border-left: dotted 2px #dddddd; /*var(--bg-color-low);*/
}

/* 메뉴 경로 */
#article0 {
	margin: 0px;
	padding: 0px;
}

/* 조건, 버튼 */
#article1 {
	padding: 5px;
}

/* 콘텐츠 영역 */
#article2, #article3, #article4 {
	padding: 0px 5px 5px 5px;
}

/*---------------------------------------------------------------*/

/* submenu title */
#subtitle1 {
	width: 130px;
	margin: 0px;
	text-align: center;
}

/* submenu title */
#subtitle2 {
	width: 100%;
	margin: 0px;
	text-align: right;
	color: var(--color-middle);
}

#subtitle1, #submenu {
	background-color: var(--bg-color-middle);
	color: var(--left-menu-color);
}

#subtitle1:after, #subtitle2:after {
	content: "";
	display: block;
	clear: both;
	border-bottom: dotted 2px #dddddd;
}

#submenu li a:hover {
	background-color: var(--bg-color-low);
	color: var(--left-menu-color);
}

#submenu li.active {
	background-color: var(--bg-color-low);
}

#submenu li:after {
	content: "";
	display: block;
	clear: both;
}
/* fa-dot-circle-o */
.content-title:before {
	content: "\f518";
	padding-right: 5px;
	display: inline-block;

	font-family: bootstrap-icons !important;
	font-style: normal;
	font-weight: normal !important;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	vertical-align: -.125em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.content-title {
	color: var(--color-high);
}

/*---------------------------------------------------------------*/

.table {
	margin-bottom: 0px;
	font-size: 0.9rem;
}
.table > tbody, .table > thead, .table > tbody > tr:last-child {
	border-top: 1px solid #000000;
}
.table > thead {
	border-bottom: 1px solid #000000;
	background-color: #f1f1f1;
}
.table > tbody > tr:last-child {
	border-bottom: 1px solid #000000;
}
.table > tbody > td {
	border-bottom: 1px solid #000000;
}
.table-sm > :not(caption) > * > * {
	padding: 0.1rem 0.3rem;
	vertical-align: middle;
	text-align: center;
	box-shadow: none;
}
.table-bordered>:not(caption)>*>*:first-child {
	border-left: none;
}
.table-bordered>:not(caption)>*>*:last-child {
	border-right: none;
}

tbody tr:nth-child(odd){
	background: #ffffff;
}
tbody tr:nth-child(even){
	background: #f1f1f1;
}

tbody:nth-child(odd)  td[rowspan]{
	background: #ffffff;
}
tbody:nth-child(even)  td[rowspan]{
	background: #f1f1f1;
}

#group_button {
	margin-top: 5px;
	margin-bottom: 5px;
	text-align: right;
}

/* ci4 pager */
.pagination {
	width: 100%;
	margin: 0px;
	padding: 0px;
	justify-content: center;
	--bs-pagination-color: #212529;
	--bs-pagination-font-size: 0.9rem;

	--bs-pagination-padding-x: 0.75rem;
	--bs-pagination-padding-y: 0.375rem;
	/*--bs-pagination-color: var(--bs-link-color);*/
	--bs-pagination-bg: #fff;
	--bs-pagination-border-width: 1px;
	--bs-pagination-border-color: #dee2e6;
	--bs-pagination-border-radius: 0.375rem;
	--bs-pagination-hover-color: var(--bs-link-hover-color);
	--bs-pagination-hover-bg: var(--bg-color-low);
	--bs-pagination-hover-border-color: var(--bg-color-low);
	--bs-pagination-focus-color: var(--bs-link-hover-color);
	--bs-pagination-focus-bg: var(--bg-color-low);
	--bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
	--bs-pagination-active-color: #fff;
	--bs-pagination-active-bg: var(--bg-color-high);
	--bs-pagination-active-border-color: var(--bg-color-high);
	--bs-pagination-disabled-color: #6c757d;
	--bs-pagination-disabled-bg: #fff;
	--bs-pagination-disabled-border-color: #dee2e6;
	display: flex;
	padding-left: 0;
	list-style: none;
}
/* bootstrap init */
.container {
	width: 100%;
	max-width: 100%;
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
}
/* bootstrap init */
.row {
	--bs-gutter-x: 0;
	--bs-gutter-y: 0;
}
.note-editor.note-airframe {
	padding: 10px;
	line-height: 1.0em; /* 원하는 줄간격 값 */
}
.summernote-text {
	white-space: normal;
	word-break: break-word;
}

button {
	margin-left: 3px;
}
.btn {
	padding: 2px 7px;
}
.btn-primary {
	font-size: 1rem;

	--bs-btn-color: var(--left-menu-color);
	--bs-btn-bg: var(--bg-color-middle);
	--bs-btn-border-color: var(--bg-color-middle);
	--bs-btn-hover-color: var(--left-menu-color);
	--bs-btn-hover-bg: var(--bg-color-low);
	--bs-btn-hover-border-color: var(--bg-color-low);
	--bs-btn-disabled-color: var(--left-menu-color);
	--bs-btn-disabled-bg: var(--disabled-bg);
	--bs-btn-disabled-border-color: var(--bg-color-middle);
}

#login {
	margin: 0;
	padding: 0;
}




/*==========  Mobile First Method  ==========*/
/* All Device */

/* Custom, iPhone Retina : 320px ~ */
@media only screen and (min-width : 320px) {

}
/* Extra Small Devices, Phones : 480px ~ */
@media only screen and (min-width : 480px) {

}
/* Small Devices, Tablets : 768px ~ */
@media only screen and (min-width : 768px) {
	#btnMobileMenu {
		display: none;
	}
}
/* Medium Devices, Desktops : 992px ~ */
@media only screen and (min-width : 992px) {

	#slider {
		max-width:1200px;
		max-height:460px;
		width:1200px;
		height:460px;
		margin: 0px auto;
	}

	#slider img {
		position:absolute;
		width: 1200px;
		height: 460px;
	}

}
/* Large Devices, Wide Screens : 1200px ~ */
@media only screen and (min-width : 1200px) {

}

/*==========  Non-Mobile First Method  ==========*/
/* All Device */

/* Large Devices, Wide Screens : ~ 1200px */
@media only screen and (max-width : 1200px) {

}
/* Medium Devices, Desktops : ~ 992px */
@media only screen and (max-width : 992px) {

}
/* Small Devices, Tablets : ~ 768px */
@media only screen and (max-width : 767px) {

	#welcome-msg {
		display:none;
	}

	#article0 {
		width: auto;
		float: right;
		display: none;
	}

	#mainmenu {
		display: none;
	}

	#mainmenu li {
		float: none;
		width: auto;
	}

	/* 로그인 */
	#mainmenu li:nth-child(7) {
		float: none;
		width: auto;
	}

	#mainmenu li a {
		padding: 5px 10px;
		font-size: 1.1em;
		border-bottom: 1px solid #ffffff;
	}

	/* submenu */
	#left {
		display: block;
		float: none;
		width: 100%;
		margin: 0px;
		padding: 0px;
	}

	#left:after {
		content: "";
		display: block;
		clear: both;
	}

	#subtitle1 {
		display: none;
	}

	#mainmenubtn {
		display: block;
	}

	#mainmenubtn {
		padding: 3px 6px;
		border: solid 1px #aaaaaa;
		border-radius: 5px;
		background-color: #ffffff;
		position: absolute;
		top: 0px;
		right: 0px;
		cursor: pointer;
	}

	#mainmenubtn:hover {
		background-color: #ffffff;
	}

	#mainmenubtn:focus {
		outline: none;
	}

	#mainmenubtn i {
		color: #888888;
		font-size: 22px;
	}

	#mainmenubtn.sticky {
		position: fixed;
		top: 0;
	}

	#btnMobileMenu {
		display: block;
	}

	/* submenu title */
	#btnMobileMenu {
		width: 40px;
		height: 40px;
		font-size: 1.8rem;
		border: none;
		position: fixed;
		top: 10px;
		right: 10px;
	}

	#btnMobileMenu:after {
		content: "";
		display: block;
		clear: both;
	}

	#btnMobileMenu:focus {
		outline: none;
	}

	#submenu {
		display: none;
	}

	#submenu {
		float: none;
		width: auto;
	}

	#submenu li a {
		display: block;
		padding: 5px 10px;
		font-size: 1.1em;
		border-bottom: 1px solid #ffffff;
	}

	#submenu:after {
		content: "";
		display: block;
		clear: both;
	}

	#slider {
		display: none;
	}

	#content {
		margin: 0px;
		border-left: none;
		padding: 0px;
	}

	.column-hidden {
		display: none;
	}
}

/* Extra Small Devices, Phones : ~ 480px */
@media only screen and (max-width : 480px) {

header div a {
	width: 100%;
	height: 30px;
}

.logo {
	background: url("https://v3.imun.or.kr/contents/images/common/main_imun_m.png") no-repeat;
}

#mainmenubtn {
	padding: 2px 6px;
}
}
/* Custom, iPhone Retina : ~ 320px */
@media only screen and (max-width : 320px) {

header div a {
	width: 100%;
	height: 24px;
}

.logo {
	background: url("https://v3.imun.or.kr/contents/images/common/main_imun_s.png") no-repeat;
}

#mainmenubtn {
	padding: 0px 6px;
	height: 24px;
}

}