@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Layout
# Common
# Form
	## button
	## input text
	## textarea
	## select
	## checkbox
	## radio
	## calendar
# Module
	## module-login
	## module-header-logo
	## module-header-logout
	## module-header-nav
	## module-search-contents
	## module-card
	## module-table-top-func
	## module-table
	## module-tab
	## module-title-sub
	## module-form-fieldset
	## module-footer-btns
	## module-schedule-form-row
	## module-color-info-list
	## module-timetable
	## module-tooltip
	## module-pagination
	## module-code-box
	## module-flex-area
	## module-tree-menu
# Header
# Footer
# Page
	## Common
# Modal
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  line-height: 1.5;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  text-size-adjust: none;
}

body, div, p, span, em, small, a, h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, table, th, td, form, fieldset, legend, input, textarea, button, select, article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article, aside, canvas, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

table {
  border-collapse: collapse;
}

h1 {
  font-size: 2em;
}

img, fieldset, iframe {
  border-style: none;
}

ul, ol, li, dl, dt, dd {
  list-style: none;
}

i, em, address, dfn {
  font-style: normal;
}

a {
  background-color: transparent;
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}

a:visited {
  color: inherit;
}

b,
strong {
  font-weight: bolder;
}

img {
  vertical-align: top;
}

input, select, button, textarea {
  outline-style: none;
}

button {
  display: block;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

input,
input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input:-ms-clear,
input:-ms-reveal {
  display: none;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
}

textarea {
  resize: vertical;
  overflow: auto;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

hr, template, [hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

code, kbd, samp, pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

mark {
  background-color: #ff0;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

svg:not(:root) {
  overflow: hidden;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html, body, input, select, button, textarea {
  color: #222;
  font-family: 'Malgun Gothic', '맑은 고딕', 'Noto Sans KR', 'Noto Sans CJK KR', 'Noto Sans', 'New Roboto', 'Roboto', 'Apple SD Gothic NEO', '애플 SD 산돌고딕 Neo', 'Apple SD 산돌고딕 Neo', AppleSDGothic, 'AppleGothic', -apple-system, system, BlinkMacSystemFont, 'SF UI Text', 'SF Pro Text', BlinkMacSystemFont, 'droid sans fallback', 'Droid Sans', 'Segoe UI', "Helvetica Neue", Helvetica, Tahoma, "Microsoft Sans Serif", sans-serif;
  font-size: 12px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
html {
  /*overflow-x: auto;
  overflow-y: scroll;*/
}

html, body {
  width: 100%;
  height: 100%;
}

.wrap {
  position: relative;
  min-width: 1500px;
  height: 100%;
  margin: 0 auto;
}

.header {
  height: 50px;
}

.main {
  min-height: calc(100% - 80px);
  /*padding: 0 0 30px;*/
}

.container {
  /*max-width: 1920px;*/
  max-width: 2100px;
  margin: 0 auto;
  padding: 0 30px;
}

.main > .container {
  /*padding-top: 30px;*/
}
.no_search_container {
	padding-top: 30px;
}

.wrap.popup {
  min-width: 1332px;
}

.wrap.popup .main {
  padding-top: 30px;
}

.wrap.popup .main > .container {
  padding-top: 0;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

.sr-only {
  position: absolute;
  top: -1000em;
  left: 0;
  display: block;
  overflow: hidden;
}

.ir {
  display: block;
  overflow: hidden;
  text-indent: -9999em;
  white-space: nowrap;
}

.show {
  display: block !important;
}

.hide {
  display: none !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.fc-main {
  color: #20b2df !important;
}

.fc-sub {
  color: #464646 !important;
}

.fc-red {
  color: #e31b4c !important;
}

.bg-main {
  background-color: #20b2df !important;
}

.bg-sub {
  background-color: #464646 !important;
}

.bg-red {
  background-color: #e31b4c !important;
}

.text-ellipsis {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-item {
  display: inline-block;
  vertical-align: top;
}

/*--------------------------------------------------------------
# Form
	## button
--------------------------------------------------------------*/
.btn,
a.btn {
  display: inline-block;
  width: auto;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  font-weight: 400;
  text-align: center;
  vertical-align: top;
  cursor: pointer;
  white-space: nowrap;
}

.btn.btn-block,
a.btn.btn-block {
  display: block;
  width: 100%;
}

.btn.btn-border,
a.btn.btn-border {
  border-width: 1px;
  border-style: solid;
}

.btn.btn-bold,
a.btn.btn-bold {
  font-weight: 700;
}

.btn.btn-underline,
a.btn.btn-underline {
  text-decoration: underline;
}

.btn.btn-size-1,
a.btn.btn-size-1 {
  height: 56px;
  font-size: 14px;
  line-height: 56px;
}

.btn.btn-size-1.btn-border,
a.btn.btn-size-1.btn-border {
  line-height: 54px;
}

.btn.btn-size-2,
a.btn.btn-size-2 {
  height: 30px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 30px;
}

.btn.btn-size-2.btn-border,
a.btn.btn-size-2.btn-border {
  line-height: 28px;
}

.btn.btn-size-3,
a.btn.btn-size-3 {
  height: 25px;
  padding: 0 15px;
  font-size: 12px;
  line-height: 25px;
}

.btn.btn-size-3.btn-border,
a.btn.btn-size-3.btn-border {
  line-height: 23px;
}

.btn.btn-blue,
a.btn.btn-blue {
  background-color: #20b2df;
  color: #fff;
}

.btn.btn-blue.btn-border,
a.btn.btn-blue.btn-border {
  background-color: #fff;
  border-color: #20b2df;
  color: #20b2df;
}

.btn.btn-gray,
a.btn.btn-gray {
  background-color: #464646;
  color: #fff;
}

.btn.btn-gray.btn-border,
a.btn.btn-gray.btn-border {
  background-color: #fff;
  border-color: #464646;
  color: #464646;
}

.btn.btn-white,
a.btn.btn-white {
  background-color: #fff;
  color: #222;
}

.btn.btn-white.btn-border,
a.btn.btn-white.btn-border {
  background-color: #fff;
  border-color: #cfdbe2;
  color: #222;
}

.btn:disabled,
a.btn:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}

/*--------------------------------------------------------------
# Form
	## input text
--------------------------------------------------------------*/
.input-text > input {
  width: 100%;
  border: 1px solid #dde6e9;
  border-radius: 4px;
  color: #222;
}

.input-text > input[readonly] {
  background-color: #f3f3f3;
}

.input-text > input[disabled] {
  background-color: #f3f3f3;
  cursor: not-allowed;
}

.input-text > input::-webkit-input-placeholder {
  color: #b7bac9;
}

.input-text > input::-moz-placeholder {
  color: #b7bac9;
}

.input-text > input:-webkit-input-placeholder {
  color: #b7bac9;
}

.input-text > input:-ms-input-placeholder {
  color: #b7bac9;
}

.input-text > input:-moz-placeholder {
  color: #b7bac9;
}

.input-text.essential {
  position: relative; 
}

.input-text.essential:before {
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: #ffd700;
  border-radius: 3px;
  content: "";
}

.input-text.essential > input {
  border-color: #ffd700;
}

.input-text.focus > input {
  border-color: #20b2df;
}

.input-text-type-1 {
  font-size: 0;
}

.input-text-type-1 > label {
  display: inline-block;
  width: 72px;
  margin-right: 10px;
  font-size: 12px;
  line-height: 25px;
  vertical-align: top;
}

.input-text-type-1 > input {
  width: 249px;
  height: 25px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 23px;
  vertical-align: top;
}

.input-width-small.input-text-type-1 > input {
  width: 50px;
}

.input-width-small.input-text-type-1 > .unit {
  display: inline-block;
  margin-left: 3px;
  font-size: 12px;
  line-height: 25px;
  vertical-align: top;
}

.input-width-wide.input-text-type-1 > input {
  width: 465px;
}

.input-date > .input-text-type-1 {
  margin-right: 3px !important;
}

.input-date > .input-text-type-1:last-child {
  margin-right: 0 !important;
}

.input-date > .input-text-type-1 > input {
  width: 117px;
  padding-right: 20px;
  background-image: url("../images/ico-calendar.svg");
  background-repeat: no-repeat;
  background-position: right 3px center;
  background-size: 14px 14px;
}

.input-date > .input-text-type-1 > .unit {
  display: inline-block;
  margin-left: 3px;
  font-size: 12px;
  line-height: 25px;
  vertical-align: top;
}

.input-time > input {
  width: 117px;
  padding-right: 20px;
  background-image: url("../images/ico-clock.svg");
  background-repeat: no-repeat;
  background-position: right 3px center;
  background-size: 14px 14px;
}

.input-block {
  display: block;
}

.input-block > input {
  width: 100%;
}

/*--------------------------------------------------------------
# Form
	## textarea
--------------------------------------------------------------*/
.textarea > textarea {
  width: 100%;
  border: 1px solid #dde6e9;
  border-radius: 4px;
  color: #222;
  resize: vertical;
}

.textarea > textarea[readonly] {
  background-color: #f3f3f3;
}

.textarea > textarea[disabled] {
  background-color: #f3f3f3;
  cursor: not-allowed;
}

.textarea > textarea::-webkit-input-placeholder {
  color: #b7bac9;
}

.textarea > textarea::-moz-placeholder {
  color: #b7bac9;
}

.textarea > textarea:-webkit-input-placeholder {
  color: #b7bac9;
}

.textarea > textarea:-ms-input-placeholder {
  color: #b7bac9;
}

.textarea > textarea:-moz-placeholder {
  color: #b7bac9;
}

.textarea.essential {
  position: relative;
}

.textarea.essential:before {
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: #ffd700;
  border-radius: 3px;
  content: "";
}

.textarea.essential > textarea {
  border-color: #ffd700;
}

.textarea.focus > textarea {
  border-color: #20b2df;
}

.textarea-type-1 {
  font-size: 0;
}

.textarea-type-1 > textarea {
  width: 249px;
  min-height: 71px;
  padding: 0 10px;
  font-size: 12px;
  line-height: 23px;
  vertical-align: top;
}

.textarea-block {
  display: block;
}

.textarea-block > textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Form
	## select
--------------------------------------------------------------*/
.select > select {
  width: 100%;
  border: 1px solid #dde6e9;
  border-radius: 4px;
  color: #222;
}

.select > select[disabled] {
  background-color: #f3f3f3;
  cursor: not-allowed;
}

.select.essential {
  position: relative;
}

.select.essential:before {
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  width: 5px;
  height: 5px;
  background-color: #ffd700;
  border-radius: 3px;
  content: "";
}

.select.essential > select {
  border-color: #ffd700;
}

.select.focus > select {
  border-color: #20b2df;
}

.select-type-1 {
  font-size: 0;
}

.select-type-1 > label {
  display: inline-block;
  width: 72px;
  margin-right: 10px;
  font-size: 12px;
  line-height: 25px;
  vertical-align: top;
}

.select-type-1 > select {
  width: 249px;
  height: 25px;
  padding: 0 20px 0 10px;
  background-color: #fff;
  background-image: url("../images/arr-down-black.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  font-size: 12px;
  line-height: 23px;
  vertical-align: top;
}

.select-block {
  display: block;
}

.select-block > select {
  width: 100%;
}

.select-width-small.select-type-1 > select {
  width: 80px;
}

.select-width-small.select-type-1 > .unit {
  display: inline-block;
  margin-left: 3px;
  font-size: 12px;
  line-height: 25px;
  vertical-align: top;
}

/*--------------------------------------------------------------
# Form
	## checkbox
--------------------------------------------------------------*/
.checkbox {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}

.checkbox:last-child {
  margin-right: 0;
}

.checkbox > input {
  position: absolute;
  top: 50%;
  left: 1px;
  z-index: 1;
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0.01;
}

.checkbox > label {
  position: relative;
  z-index: 2;
  display: block;
}

.checkbox > label:before {
  position: absolute;
  left: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #dde6e9;
  border-radius: 4px;
  content: "";
}

.checkbox > input:checked + label:before {
  background-color: #20b2df;
  background-image: url("../images/ico-check-white.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60% 60%;
  border-color: #20b2df;
}

.checkbox > input[disabled] + label:before {
  background-color: #cfdbe2;
  border-color: #dde6e9;
  cursor: not-allowed;
}

.checkbox.essential > label:before {
  border-color: #ffd700;
}

.checkbox.essential > input:checked + label:before {
  background-color: #ffd700;
  border-color: #ffd700;
}

.checkbox.essential > input[disabled] + label:before {
  background-color: #f3f3f3;
  border-color: #dde6e9;
}

.checkbox-type-1 {
  line-height: 25px;
}

.checkbox-type-1 label {
  padding-left: 21px;
  font-size: 12px;
}

.checkbox-type-1 label:before {
  top: 4px;
  width: 18px;
  height: 18px;
}

/*--------------------------------------------------------------
# Form
	## radio
--------------------------------------------------------------*/
.radio {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
}

.radio:last-child {
  margin-right: 0;
}

.radio > input {
  position: absolute;
  top: 50%;
  left: 1px;
  z-index: 1;
  display: block;
  width: 1px;
  height: 1px;
  opacity: 0.01;
}

.radio > label {
  position: relative;
  z-index: 2;
  display: block;
}

.radio > label:before {
  position: absolute;
  left: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: 3px solid #fff;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 0 1px #dde6e9;
  box-shadow: 0 0 0 1px #dde6e9;
  content: "";
}

.radio > input:checked + label:before {
  background-color: #20b2df;
  -webkit-box-shadow: 0 0 0 1px #20b2df;
  box-shadow: 0 0 0 1px #20b2df;
}

.radio > input[disabled] + label:before {
  background-color: #fff;
  cursor: not-allowed;
}

.radio > input[disabled]:checked + label:before {
  background-color: #cfdbe2;
  -webkit-box-shadow: 0 0 0 1px #dde6e9;
  box-shadow: 0 0 0 1px #dde6e9;
}

.radio.essential > label:before {
  -webkit-box-shadow: 0 0 0 1px #ffd700;
  box-shadow: 0 0 0 1px #ffd700;
}

.radio.essential > input:checked + label:before {
  background-color: #ffd700;
  -webkit-box-shadow: 0 0 0 1px #ffd700;
  box-shadow: 0 0 0 1px #ffd700;
}

.radio.essential > input[disabled] + label:before {
  background-color: #f3f3f3;
  -webkit-box-shadow: 0 0 0 1px #dde6e9;
  box-shadow: 0 0 0 1px #dde6e9;
}

.radio-type-1 {
  line-height: 25px;
}

.radio-type-1 label {
  padding-left: 21px;
  font-size: 12px;
}

.radio-type-1 label:before {
  top: 5px;
  width: 16px;
  height: 16px;
}

/*--------------------------------------------------------------
# Form
	## calendar
--------------------------------------------------------------*/
.ui-datepicker a.ui-datepicker-prev-hover,
.ui-datepicker a.ui-datepicker-next-hover {
  top: 2px;
}

.ui-datepicker a.ui-datepicker-prev-hover {
  left: 2px;
}

.ui-datepicker a.ui-datepicker-next-hover {
  right: 2px;
}

/*--------------------------------------------------------------
# Module
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Module
	## module-login
--------------------------------------------------------------*/
.module-login {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 400px;
}

.module-login > .box {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.module-login > .box > .head {
  height: 55px;
  background: #20b2df;
  text-align: center;
}

.module-login > .box > .head .title {
  color: #fff;
  font-size: 22px;
  line-height: 55px;
}

.module-login > .box > .body {
  padding: 20px 22px 22px;
}

.module-login > .box > .body > .pull-right {
  width: 101px;
}

.module-login > .box > .body .input-text {
  margin-bottom: 6px;
}

.module-login > .box > .body .input-text:last-child {
  margin-bottom: 0;
}

.module-login > .info {
  margin-top: 16px;
  text-align: center;
}

.module-login > .copyright {
  margin-top: 16px;
  color: #999;
  text-align: center;
}

/*--------------------------------------------------------------
# Module
	## module-header-logo
--------------------------------------------------------------*/
.module-header-logo > .text {
  display: block;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Module
	## module-header-logout
--------------------------------------------------------------*/
.module-header-logout {
  padding: 10px 0;
  line-height: 30px;
}

.module-header-logout > .name {
  display: inline-block;
}

/*--------------------------------------------------------------
# Module
	## module-header-nav
--------------------------------------------------------------*/

.module-header-nav {
	/*height:50px;*/
	/*width:1200px;*/
}

.module-header-nav ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.module-header-nav > ul:after {
  clear: both;
}
.module-header-nav > ul:before, .module-header-nav > ul:after {
  content: "";
  display: table;
}

.module-header-nav > ul > li {
	float: left;
	position: relative;
}
.module-header-nav > ul > li:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.module-header-nav > ul > li.active {
  background-color: rgba(255, 255, 255, 0.9);
}

.module-header-nav > ul > li.active, .module-header-nav > ul > li:hover {
  position: relative;
  color: #117391;
}

.module-header-nav > ul > li.active:after, .module-header-nav > ul > li:hover:after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #117391;
  content: "";
}

.module-header-nav > ul > li > a {
  display: block;
  padding: 0 15px;
  font-size: 14px;
}

.module-header-nav > ul > li > ul {
	position: absolute;
	/*height: 0px;*/	
	overflow: hidden;
	border-left : 1px solid #eee;
	border-right : 1px solid #eee;
	border-bottom : 1px solid #eee;
	display: none;
	z-index: 10;	
}
.module-header-nav > ul > li:hover > ul {
	/*height: 93px;*/
	display: block;
}
.module-header-nav > ul > li > ul > li {
	background-color: rgba(255, 255, 255, 1);
	float: left;
	position: relative;
	line-height: 40px;
	border-bottom: 1px solid #f3f8fb;
}

.module-header-nav > ul > li > ul > li > a {
	text-decoration: none;
	display: block;
	width: 200px;
	padding: 0 15px;
}
 

/*--------------------------------------------------------------
# Module
	## module-search-contents
--------------------------------------------------------------*/
.module-search-contents {
  margin-bottom: 30px;
  background: #fafbfc;
  border-bottom: 1px solid #cfdbe2;
}

.module-search-contents .container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.module-search-contents .form-row {
  margin-bottom: 6px;
}

.module-search-contents .form-row:last-child {
  margin-bottom: 0;
}

.module-search-contents .form-row .form-item {
  display: inline-block;
  font-size: 0;
  margin-right: 50px;
  vertical-align: top;
}

.module-card > .module-search-contents {
  margin-top: -20px;
  margin-right: -20px;
  margin-left: -20px;
}

/*--------------------------------------------------------------
# Module
	## module-card
--------------------------------------------------------------*/
.module-card {
  padding: 20px 20px 30px;
  background: #fff;
  border: 1px solid #cfdbe2;
  border-top-width: 3px;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.module-tab + .module-card {
  border-radius: 0 4px 4px 4px;
}

/*--------------------------------------------------------------
# Module
	## module-table-top-func
--------------------------------------------------------------*/
.module-table-top-func {
  margin-bottom: 8px;
}

.module-table-top-func:before, .module-table-top-func:after {
  content: "";
  display: table;
}

.module-table-top-func:after {
  clear: both;
}

/*--------------------------------------------------------------
# Module
	## module-table
--------------------------------------------------------------*/
.module-table > table {
  width: 100%;
}

.module-table.list-view > table > thead > tr > th {
  padding: 10px 8px;
  background: #f3f3f3;
  border: 1px solid #cfdbe2;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  text-align: center;
}

.module-table.list-view > table > tbody > tr > td {
  padding: 8px;
  border: 1px solid #cfdbe2;
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.module-table.table-form > table > tbody > tr > th,
.module-table.table-form > table > tbody > tr > td {
  padding: 5px;
  border: 1px solid #cfdbe2;
  font-size: 12px;
  line-height: 18px;
}

.module-table.table-form > table > tbody > tr > th {
  background: #f3f3f3;
  font-weight: 700;
  text-align: center;
}

.module-table.table-form > table > tbody > tr > th.essential:before {
  color: #e31b4c;
  content: "*";
}

.module-table.table-form > table > tbody > tr > td {
  font-size: 12px;
  font-weight: 400;
}

/*--------------------------------------------------------------
# Module
	## module-tab
--------------------------------------------------------------*/
.module-tab {
  margin-bottom: -3px;
}

.module-tab > ul:before, .module-tab > ul:after {
  content: "";
  display: table;
}

.module-tab > ul:after {
  clear: both;
}

.module-tab > ul > li {
  float: left;
}

.module-tab > ul > li > a {
  display: block;
  height: 40px;
  padding: 0 20px;
  background: #f3f3f3;
  border: 1px solid #cfdbe2;
  border-width: 1px 0 3px 1px;
  line-height: 36px;
}

.module-tab > ul > li:last-child > a {
  border-right-width: 1px;
}

.module-tab > ul > li.active > a {
  position: relative;
  background: #fff;
  border-bottom-color: #fff;
}

.module-tab > ul > li.active > a:after {
  position: absolute;
  bottom: -3px;
  left: -1px;
  display: block;
  width: 1px;
  height: 1px;
  background: #cfdbe2;
  content: "";
}

/*--------------------------------------------------------------
# Module
	## module-title-sub
--------------------------------------------------------------*/
.module-title-sub {
  margin-bottom: 10px;
}

.module-title-sub > .text {
  position: relative;
  display: inline-block;
  padding-left: 17px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  vertical-align: top;
}

.module-title-sub > .text:before {
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 12px;
  height: 12px;
  border: 3px solid #20b2df;
  border-radius: 7px;
  content: "";
}

/*--------------------------------------------------------------
# Module
	## module-form-fieldset
--------------------------------------------------------------*/
.module-form-fieldset {
  margin-bottom: 20px;
}

.module-form-fieldset:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Module
	## module-footer-btns
--------------------------------------------------------------*/
.module-footer-btns {
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Module
	## module-schedule-form-row
--------------------------------------------------------------*/
.module-schedule-form-row {
  padding: 15px 0;
  border-bottom: 1px dashed #cfdbe2;
}

.module-schedule-form-row:last-child {
  border-bottom: 0;
}

.module-schedule-form-row > .row-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

.module-schedule-form-row > .row-item > .form-item.radio {
  width: 12%;
  min-width: 12%;
}

.module-schedule-form-row > .row-item > .depth2-form {
  width: 88%;
}

.module-schedule-form-row .label-title {
  display: inline-block;
  margin: 5px 0;
}

.module-schedule-form-row .depth2-form > .form-item {
  margin-right: 15px;
}

.module-schedule-form-row .depth2-form > .form-item:last-child {
  margin-right: 0;
}

.module-schedule-form-row .depth2-form > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  margin-bottom: 20px;
  padding: 10px;
  background: #f3f3f3;
}

.module-schedule-form-row .depth2-form > .container:last-child {
  margin-bottom: 0;
}

.module-schedule-form-row .depth3-form {
  padding: 0 10px;
  border-right: 1px dotted #cfdbe2;
}

.module-schedule-form-row .depth3-form:nth-child(1) {
  width: 80px;
  min-width: 80px;
  font-weight: bold;
}

.module-schedule-form-row .depth3-form:nth-child(2) {
  width: 170px;
  min-width: 170px;
}

.module-schedule-form-row .depth3-form:nth-child(3) {
  width: 420px;
  min-width: 420px;
}

.module-schedule-form-row .depth3-form:nth-child(4) {
  width: 100%;
}

.module-schedule-form-row .depth3-form:last-child {
  border-right: 0;
}

.module-schedule-form-row .depth4-form {
  margin-left: 30px;
}

.module-schedule-form-row .depth4-form > .form-item {
  margin-bottom: 3px;
}

.module-schedule-form-row .depth4-form > .select + br + .input-text > input,
.module-schedule-form-row .depth4-form > .select + .input-text > input {
  width: 80px;
}

.module-schedule-form-row .depth4-form .checkbox {
  width: 34px;
}

.module-table + .module-schedule-form-row {
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Module
	## module-color-info-list
--------------------------------------------------------------*/
.module-color-info-list > ul:before, .module-color-info-list > ul:after {
  content: "";
  display: table;
}

.module-color-info-list > ul:after {
  clear: both;
}

.module-color-info-list > ul > li {
  float: left;
  margin-right: 15px;
  line-height: 25px;
}

.module-color-info-list > ul > li:before {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 3px;
  border-radius: 4px;
  content: "";
  vertical-align: top;
}

.module-color-info-list > ul > li.complete:before {
  background: #2da2d1;
}

.module-color-info-list > ul > li.ing:before {
  background: #00b050;
}

.module-color-info-list > ul > li.manual:before {
  background: #117391;
}

.module-color-info-list > ul > li.fail:before {
  background: #ffc000;
}

.module-color-info-list > ul > li.error:before {
  background: #ff0000;
}

.module-color-info-list > ul > li.yet:before {
  background: #8b8d8e;
}

/*--------------------------------------------------------------
# Module
	## module-timetable
--------------------------------------------------------------*/
.module-timetable {
  margin-top: 3px;
  border-top: 1px solid #cfdbe2;
  border-left: 1px solid #cfdbe2;
}

.module-timetable > .head > .row,
.module-timetable > .body > .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

.module-timetable > .head > .row > .name,
.module-timetable > .head > .row > .time-area > .bg-grid > span,
.module-timetable > .body > .row > .name,
.module-timetable > .body > .row > .time-area > .bg-grid > span {
  height: 30px;
  border-right: 1px solid #cfdbe2;
  border-bottom: 1px solid #cfdbe2;
  line-height: 29px;
}

.module-timetable > .head > .row > .name,
.module-timetable > .body > .row > .name {
  width: 100%;
  padding: 0 8px;
}

.module-timetable > .head > .row > .time-area > .bg-grid,
.module-timetable > .body > .row > .time-area > .bg-grid {
  display: block;
  width: 1440px;
  min-width: 1440px;
}

.module-timetable > .head > .row > .time-area > .bg-grid:before, .module-timetable > .head > .row > .time-area > .bg-grid:after,
.module-timetable > .body > .row > .time-area > .bg-grid:before,
.module-timetable > .body > .row > .time-area > .bg-grid:after {
  content: "";
  display: table;
}

.module-timetable > .head > .row > .time-area > .bg-grid:after,
.module-timetable > .body > .row > .time-area > .bg-grid:after {
  clear: both;
}

.module-timetable > .head > .row > .time-area > .bg-grid > span,
.module-timetable > .body > .row > .time-area > .bg-grid > span {
  display: block;
  float: left;
  width: 60px;
}

.module-timetable > .head {
  background: #f3f3f3;
  font-weight: 700;
  text-align: center;
}

.module-timetable > .body > .row > .name {
  position: relative;
}

.module-timetable > .body > .row > .time-area {
  position: relative;
}

.module-timetable > .body > .row > .time-area > .bg-grid > span {
  border-right-style: dotted;
}

.module-timetable > .body > .row > .time-area > .bg-grid > span:last-child {
  border-right-style: solid;
}

.module-timetable > .body > .row > .time-area > .job-list {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.module-timetable > .body > .row > .time-area > .job-list > .job {
  position: absolute;
  top: 5px;
  bottom: 6px;
  border-radius: 4px;
}

.module-timetable > .body > .row > .time-area > .job-list > .job.complete {
  background: #2da2d1;
}

.module-timetable > .body > .row > .time-area > .job-list > .job.ing {
  background: #00b050;
}

.module-timetable > .body > .row > .time-area > .job-list > .job.manual {
  background: #117391;
}

.module-timetable > .body > .row > .time-area > .job-list > .job.fail {
  background: #ffc000;
}

.module-timetable > .body > .row > .time-area > .job-list > .job.error {
  background: #ff0000;
}

.module-timetable > .body > .row > .time-area > .job-list > .job.yet {
  background: #8b8d8e;
}

/*--------------------------------------------------------------
# Module
	## module-tooltip
--------------------------------------------------------------*/
.module-tooltip {
  position: absolute;
  bottom: 100%;
  display: none;
  min-width: 150px;
  max-width: 350px;
  padding-bottom: 3px;
}

.module-tooltip > .box {
  display: block;
  padding: 8px;
  background: #fcfce7;
  border: 1px solid #cfdbe2;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.module-tooltip > .box > .inner {
  display: block;
  line-height: 18px;
}

.module-tooltip > .arrow {
  position: absolute;
  left: 10px;
  bottom: -3px;
  width: 12px;
  height: 7px;
}

.module-tooltip > .arrow:before, .module-tooltip > .arrow:after {
  position: absolute;
  border-width: 6px 6px 0;
  border-style: solid;
  border-color: transparent;
  content: "";
}

.module-tooltip > .arrow:before {
  bottom: 0;
  border-top-color: #cfdbe2;
}

.module-tooltip > .arrow:after {
  bottom: 1px;
  border-top-color: #fcfce7;
}

.module-tooltip.right > .arrow {
  right: 10px;
  left: auto;
}

/*--------------------------------------------------------------
# Module
	## module-pagination
--------------------------------------------------------------*/
.module-pagination {
  position: relative;
  height: 25px;
  margin-top: 15px;
}

.module-pagination > .left,
.module-pagination > .right {
  position: absolute;
  top: 0;
  line-height: 25px;
}

.module-pagination > .left {
  left: 0;
}

.module-pagination > .right {
  right: 0;
}

.module-pagination .total {
  display: inline-block;
  vertical-align: top;
}

.module-pagination > .center {
  line-height: 25px;
  text-align: center;
}

.module-pagination .page-list > ul {
  font-size: 0;
}

.module-pagination .page-list > ul > li {
  display: inline-block;
  font-size: 12px;
  vertical-align: top;
}

.module-pagination .page-list > ul > li > .btn {
  min-width: 25px;
  margin-right: -1px;
  padding: 0;
  border-radius: 0;
}

.module-pagination .page-list > ul > li > .start,
.module-pagination .page-list > ul > li > .end {
  letter-spacing: -0.3em;
}

.module-pagination .page-list > ul > li:first-child > .btn {
  border-radius: 4px 0 0 4px;
}

.module-pagination .page-list > ul > li:last-child > .btn {
  border-radius: 0 4px 4px 0;
}

/*--------------------------------------------------------------
# Module
	## module-code-box
--------------------------------------------------------------*/
.module-code-box {
  padding: 5px;
  border: 1px solid #cfdbe2;
}

.module-code-box > code {
  white-space: pre-wrap;
}

/*--------------------------------------------------------------
# Module
	## module-flex-area
--------------------------------------------------------------*/
.module-flex-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

.module-flex-area > .flex-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 0;
  -ms-flex: 1 1 0px;
  flex: 1 1 0;
  max-width: 50%;
  margin-right: 20px;
}

.module-flex-area > .flex-item:last-child {
  margin-right: 0;
}

/*--------------------------------------------------------------
# Module
	## module-tree-menu
--------------------------------------------------------------*/
.module-tree-menu {
  min-height: 700px;
  padding: 20px;
  border: 1px solid #cfdbe2;
}

.module-tree-menu ul.fancytree-container {
  border: none;
  outline: none;
}

.module-tree-menu span.fancytree-title {
  margin-right: 31px;
  white-space: normal;
  word-break: break-all;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #20b2df;
  background: -moz-linear-gradient(-45deg, #20b2df 50%, #117391 100%);
  background: -webkit-linear-gradient(-45deg, #20b2df 50%, #117391 100%);
  background: linear-gradient(135deg, #20b2df 50%, #117391 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#20b2df', endColorstr='#117391',GradientType=1 );
  color: #fff;
  line-height: 50px;
}

.header .module-header-logo,
.header .module-header-nav {
  float: left;
}

.header .module-header-nav {
  margin-left: 50px;
  /*position: absolute;	added*/
  /*left:200px	added*/
}

.header .module-header-logout {
  float: right;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Page
	## Common
--------------------------------------------------------------*/
body {
  background: #f5f7fa;
  color: #222;
}

/*--------------------------------------------------------------
# Modal
--------------------------------------------------------------*/
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: none;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: #000;
  opacity: 0.5;
}

.modal-box {
  
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1700px;
  overflow: hidden;
  background: #f5f7fa;
  border-radius: 4px;
}
.modal-box_batchinfo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  /*-webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);*/
  width: 1700px;
  overflow: hidden;
  background: #f5f7fa;
  border-radius: 4px;
}


.modal-box > .btn-close {
  position: absolute;
  top: 10px;
  right: 30px;
}

.modal-header {
  min-height: 50px;
  padding: 14px 70px 14px 30px;
  background: #fff;
  border-bottom: 1px solid #cfdbe2;
}

.modal-header .modal-title {
  font-size: 16px;
  line-height: 22px;
}

.modal-footer {
  padding: 10px 30px;
  background: #fff;
  border-top: 1px solid #cfdbe2;
}

.modal-body {
  max-height: 800px;
  overflow: auto;
  padding: 30px;
}



.cl_dataArea {margin: 0; padding-bottom: 75px; max-width: 100%; position: relative; overflow: hidden;}
.cl_dataArea iframe {margin: 0; width: 100% ;    position: absolute; top: 0;left: 0}

.openPageTab {
	background-color:  gainsboro;
	overflow: hidden;
	width:100%
}
.openPageTab #ul_openPageTab {
	line-height: 22px; max-width:2100px; margin: 0 auto; height:29px; padding-top: 3px;padding-left:24px; 
}
.openPageTab #ul_openPageTab div {
	height: 24px; border: 1px solid rgb(170, 170, 170); border-radius: 2px;padding-left: 10px;padding-right: 10px;margin-right: 5px;background-color:#f3f3f3;
}
	

.openPageTab .openPageTabNm {
	cursor: pointer;
	white-space: nowrap;
}
.openPageTab .openPageTabClose {
	float: right; line-height:20px; cursor: pointer;margin-left:10px;padding-left:5px; padding-right:5px;
}
#ul_openPageTab div.on {
	background-color:#bedcff; font-weight:bold
}	
#ul_openPageTab div.off {
	background-color:#f3f3f3; font-weight:normal
}							

				