@charset "utf-8";


html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "맑은 고딕", "Arial", sans-serif;
}

html {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

hr {
	width: 99%;
	height: 4px;
}

/* 헤더 */
header {
	margin: 0;
	width: 100%;
	border: none;
}

/* 컨텐츠 영역 */
main {
	display: flex;
	margin: 20px 0 0 0;
	width: 100%;
}

/* 메뉴 관련 */
nav {
	margin: 0;
	width: 20%;
	padding: 4px 12px;
	background-color: #6060D0;
}

#main_menu {
	display: block;
	background-color: #6060D0;
	padding: 0;
}

#main_menu > li {
	display: block;
	list-style: none;
	padding: 0;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
}

#main_menu > li > a,
#main_menu > li > a:active,
#main_menu > li > a:visited {
	border: thin inset white;
	padding: 4px 8px;
	display: block;
	color: white;
	text-decoration: none;
}

#main_menu > li > a:hover,
#main_menu > li > a:focus {
	font-weight: bolder;
	background-color: #7070E0 !important;
	border: medium outset white;
}

.dummyMenuItem {
	display: block;
	border: none;
	padding: 4px 8px;
	background-color: aqua !important;
	color: darkgreen;
	text-align: center;
}

.submenu_item {
	border: none;
	list-style: disc inset;
	color: white;
	background-color: #6060D0;
}

.submenu_item > a,
.submenu_item > a:active,
.submenu_item > a:visited {
	display: inline;
	color: white;
	text-decoration: none;
	cursor: default;
}

.submenu_item > a:hover,
.submenu_item > a:focus {
	font-weight: bolder;
	background-color: #7070E0 !important;
	border: medium outset white;
}

.wide_menu_item_inactive {
	background-color: #6060D0;
	cursor: default;
}

.wide_menu_item_active {
	background-color: #C05050;
	cursor: default;
}

/* 내용 */
#content {
	margin: 0 auto;
	padding: 10px 20px;
}

.content {
	width: 90%;
}

.content_right {
	width: 80%;
}

/* 기능 요소 */
.func_container {
	width: 95%;
	margin: 0 auto;
	display: flex;
}

.func_container_medium {
	width: 75% !important;
	margin: 0 auto;
}

.func_container_small {
	width: 50% !important;
	margin: 0 auto;
}

.func_long_left {
	width: 70% !important;
	height: 100%;
	margin: 0 !important;
	padding: 10px 20px;
	text-align: left;
	vertical-align: middle;
	border: none !important;
}

.func_short_right {
	width: 30% !important;
	height: 100%;
	margin: 0 !important;
	padding: 10px 20px;
	text-align: right;
	vertical-align: middle;
	border: none !important;
}

.func_short_left {
	padding: 2px 4px;
	margin: 0;
	width: 30%;
	text-align: right;
	vertical-align: middle;
}

.func_long_right {
	padding: 2px 4px;
	margin: 0;
	width: 70%;
	text-align: left;
	vertical-align: middle;
}

.normal_info_column {
	padding: 8px 12px;
	margin: 0;
	font-size: 1.2rem;
}

.normal_info_column input {
	font-size: 1.2rem;
	width: 160px;
}

.normal_data_table {
	display: table;
	border: medium solid black;
	font-size: 1.2rem;
	border-collapse: collapse;
	width: 95%;
	table-layout: fixed;
	margin: 0 auto;
}

.normal_data_table th,
.normal_data_table td {
	border: thin solid black;
	vertical-align: middle;
	padding: 4px 8px;
	word-break: break-all;
}

.normal_id_field {
	text-align: center;
}

.data_left_field {
	text-align: left;
}

.data_center_field {
	text-align: center;
}

.data_right_field {
	text-align: right;
}

.normal_number_field {
	text-align: right;
	font-weight: bolder;
}

.form_table {
	display: table;
	width: 100%;
	font-size: 1.2rem;
}

.form_table th,
.form_table td {
	padding: 4px 12px;
}

.form_table th {
	text-align: right;
	vertical-align: top;
	width: 15%;
}

.form_table td {
	text-align: left;
	vertical-align: top;
}


.form_table td.box_btn {
	text-align: right;
}

.form_table input,
.form_table select {
	font-size: 1.4rem;
}

.flex_data_line {
	display: flex;
	flex-direction: row;
	width: 100%;
	font-size: 1.2rem;
}

.flex_data_feed {
	display: flex;
	flex-direction: column;
	border: medium solid black;
	margin-top: 0;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.2rem;
}

.flex_form_label,
.flex_form_control {
	padding: 8px 12px;
}

.flex_data_line div.auto_align {
	margin-left: auto;
	margin-right: auto;
}

#bottom_ui {
	display: flex;
	margin: 0 auto;
}

.function_list {
	display: block;
	margin: 10px auto;
	padding: 20px 0;
	width: 40%;
	list-style: none;
}

.function_list li {
	display: inline-block;
}

.function_list_right {
	display: block;
	margin: 10px auto;
	padding: 20px 0;
	width: 100%;
	list-style: none;
	text-align: right;
	vertical-align: middle;
}

.func_button:enabled {
	display: inline-block;
	margin: 0 auto;
	padding: 4px 16px;
	color: white;
	background-color: #6060D0;
	border: thick outset green;
	text-decoration: none;
	font-size: 1.2rem;
	cursor: default;
}

.func_button:disabled {
	display: inline-block;
	margin: 0 auto;
	padding: 4px 16px;
	color: gray;
	background-color: #8080b0;
	border: thick inset cyan;
	text-decoration: none;
	font-size: 1.2rem;
	cursor: not-allowed;
}

.func_button_center_block:enabled {
	display: block;
	margin: 0 auto;
	padding: 4px 16px;
	color: white;
	background-color: #6060D0;
	border: thick outset green;
	text-decoration: none;
	font-size: 1.2rem;
	cursor: default;
}

.func_button_center_block:disabled {
	display: block;
	margin: 0 auto;
	padding: 4px 16px;
	color: gray;
	background-color: #8080B0;
	border: thick inset cyan;
	text-decoration: none;
	font-size: 1.2rem;
	cursor: not-allowed;
}

.func_button_danger:enabled {
	display: inline-block;
	margin: 0 auto;
	padding: 4px 16px;
	color: white;
	background-color: #808030;
	border: thick outset green;
	font-size: 1.6rem;
	text-decoration: none;
	cursor: default;
}

.func_button_danger:disabled {
	display: inline-block;
	margin: 0 auto;
	padding: 4px 16px;
	color: gray;
	background-color: #606050;
	border: thick inset cyan;
	font-size: 1.6rem;
	text-decoration: none;
	cursor: not-allowed;
}

.box_func_center {
	text-align: center;
	vertical-align: middle;
}

.box_func_right {
	text-align: right;
	vertical-align: middle;
}

.box_form_label {
	text-align: right;
}

.box_message_list {
	padding: 12px;
	border: thin solid black;
	margin-top: 40px;
	margin-bottom: 40px;
}

/* 쪽 이동 관련 */
.page_nav_list {
	display: block;
	list-style: none;
	margin: 10px auto;
	width: 60%;
}

.page_nav_item {
	display: inline-block;
	list-style: none;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 0;
	margin-right: 2px;
	padding: 4px 8px;
	border: medium solid black;
	color: black;
	font-weight: bolder:
	cursor: default;
}

.page_nav_item a,
.page_nav_item a:hover, 
.page_nav_item a:visited, 
.page_nav_item a:active {
	color: black;
	font-weight: normal;
	display: inline;
	cursor: pointer;
}
