@charset "UTF-8";
/**
 * Cleopatra default css
 */
body {
  margin: 0;
  padding: 0;
}
/**
 * iOS에서 탭 하이라이팅 제거.
 */
* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/**
 * iOS 에서 폰트크기 자동 변경 방지.
 */
body {
  -webkit-text-size-adjust: 100%;
}
::-webkit-input-placeholder {
  /* Chrome */
  color: #757575;
}
:-ms-input-placeholder {
  /* IE 10+ */
  /* inherit을 지정하여 우선순위에서 밀려 important를 사용 */
  color: #757575!important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #757575;
  opacity: 1;
}
:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #757575;
  opacity: 1;
}
.cl-placeholder {
  color: #757575!important;
}
/* 모든 UIControl 공통 스타일 */
.cl-control {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  font: 14px sans-serif;
  color: #333;
}
.cl-control * {
  box-sizing: border-box;
}
.cl-unselectable {
  -webkit-touch-callout: none;
  user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-drag: none;
}
.cl-selectable {
  -webkit-user-select: text;
  /* Safari */
  -khtml-user-select: text;
  /* Konqueror HTML */
  -moz-user-select: text;
  /* Firefox */
  -ms-user-select: text;
  /* Internet Explorer/Edge */
  user-select: text;
}
.cl-control .cl-text.cl-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 렌더링 도중 오류가 발생한 컨트롤 */
.cl-unavailable {
  border: 1px solid red;
}
.cl-unavailable .cl-text {
  color: red;
  font-weight: bold;
}
.cl-unavailable .cl-text:before {
  content: " ";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAICAYAAAA1BOUGAAAAcElEQVR42mO44eT/HxdmABF3QhL+341KBQuAaBAfLvlm8cr/IHA7MPb/vz9//r+euwQhCcJvl635/+fDx//PuyejGgvT/ffzl/8vJs5ElXw5ZQ7YuDvhSWD6Rd80hOT9tIL/jwqrwQIgGsRHMRYbBgC/75gcfvB6cwAAAABJRU5ErkJggg==");
  background-position: center center;
  background-repeat: no-repeat;
}
.cl-scrollbar.cl-touchdevice.cl-ios {
  -webkit-overflow-scrolling: touch;
}
.cl-grid .cl-blank > .cl-scrollbar.cl-touchdevice.cl-ios {
  -webkit-overflow-scrolling: initial;
}
.cl-filterdlg .cl-blank > .cl-scrollbar.cl-touchdevice.cl-ios {
  -webkit-overflow-scrolling: initial;
}
.cl-combobox-list .cl-scrollbar.cl-touchdevice.cl-ios {
  -webkit-overflow-scrolling: initial;
}
.cl-tree .cl-scrollbar.cl-touchdevice.cl-ios {
  -webkit-overflow-scrolling: initial;
}
.cl-container {
  position: relative;
  overflow: hidden;
}
/* Grid 스타일 */
.cl-grid {
  border: solid 1px #bbb;
  -webkit-touch-callout: none;
  /* iOS Safari */
  /* user-select 관련 css 적용시 chrome에서 copy event 발생하지 않음 (17.09.26) */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* 그리드 헤더 스타일 */
  /* 그리드 헤더 외곽 영역 */
  /* 그리드 디테일 외곽 영역 */
  /* 그리드 푸터 외곽 영역 */
  /* 왼쪽 틀고정된 그리드의 스타일 */
  /* 오른쪽 틀고정된 그리드의 스타일 */
}
.cl-grid .cl-grid-ctrl-inherit.cl-border-none {
  border: none;
}
.cl-grid .cl-grid-ctrl-inherit:not(.cl-button):not(.cl-disabled) {
  background: inherit;
  color: inherit;
}
.cl-grid .cl-text {
  text-align: inherit;
  vertical-align: inherit;
}
.cl-grid .cl-grid-cell[data-role="gridrowgroupcell"] > * {
  line-height: 20px;
  vertical-align: middle;
}
.cl-grid .cl-grid-header {
  background-image: linear-gradient(#FCFEFF, #E0E1E2);
  border: none;
  text-align: center;
  cursor: default;
  /* 상명대 요구사항 20180602 */
  /* 상명대 요구사항 20180602 */
}
.cl-grid .cl-grid-header .cl-sort {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
}
.cl-grid .cl-grid-header .cl-sort.cl-sortable {
  background-image: url(icons/grid-sortable.png);
}
.cl-grid .cl-grid-header .cl-sort.cl-sort-asc {
  background-image: url(icons/grid-sort-asc.png);
}
.cl-grid .cl-grid-header .cl-sort.cl-sort-desc {
  background-image: url(icons/grid-sort-desc.png);
}
.cl-grid .cl-grid-header .cl-filter {
  width: 16px;
  height: 16px;
  border: 0px;
  background-image: url(icons/chevron.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center;
  cursor: pointer;
}
.cl-grid .cl-grid-header .cl-filter:hover {
  background-image: url(icons/chevron-hover.png);
}
.cl-grid .cl-grid-header .cl-filter.cl-filtered {
  background-image: url(icons/chevron-selected.png);
}
.cl-grid .cl-grid-header .cl-sortable-cell .cl-sort {
  width: 16px;
  position: relative;
  font-size: 9px;
  cursor: pointer;
}
.cl-grid .cl-grid-header .cl-sortable-cell .cl-sort .cl-sort-icon:before {
  content: "△";
}
.cl-grid .cl-grid-header .cl-sortable-cell.cl-sort-asc .cl-sort-icon:before {
  content: "▲";
}
.cl-grid .cl-grid-header .cl-sortable-cell.cl-sort-desc .cl-sort-icon:before {
  content: "▼";
}
.cl-grid .cl-grid-header {
  /* 디테일에 스크롤이 생길시 우측에 생기는 빈 영역 */
}
.cl-grid .cl-grid-header .cl-blank {
  box-sizing: border-box;
  background-color: #f1f1f1;
}
.cl-grid .cl-grid-detail {
  /* 디테일에 스크롤이 생길시 우측하단에 생기는 빈 영역 */
}
.cl-grid .cl-grid-detail .cl-blank {
  box-sizing: border-box;
  background-color: #f1f1f1;
}
.cl-grid .cl-grid-footer {
  border-top: solid 1px #bbb;
  /* 디테일에 스크롤이 생길시 우측에 생기는 빈 영역 */
}
.cl-grid .cl-grid-footer .cl-blank {
  box-sizing: border-box;
  background-color: #f1f1f1;
}
.cl-grid.cl-leftsplit .cl-grid-centersplit {
  border-left: 1px solid #bbb;
}
.cl-grid.cl-rightsplit .cl-grid-centersplit {
  border-right: 1px solid #bbb;
}
.cl-grid .cl-grid-topsplit {
  border-bottom: solid 1px #333;
}
.cl-grid .cl-grid-bottomsplit {
  border-top: solid 1px #333;
}
.cl-grid .cl-grid-topsplit {
  border-bottom: solid 1px #333;
}
.cl-grid .cl-grid-bottomsplit {
  border-top: solid 1px #333;
}
.cl-grid .cl-nodatamsg {
  text-align: center;
}
.cl-grid.cl-disabled {
  background-image: none;
  background-color: rgba(119, 119, 119, 0.5);
  color: #333;
}
/* Grid 필터 팝업 스타일 */
.cl-gridfilter.cl-overlay {
  background-color: rgba(0, 0, 0, 0.1);
}
.cl-gridfilter .cl-filterdlg {
  padding: 2px 2px 2px 2px;
  background-color: #ffffff;
  border: 1px solid gray;
  width: 350px;
  height: 305px;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-header {
  background-image: linear-gradient(#FCFEFF, #E0E1E2);
  height: 25px;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-header .cl-text {
  font-weight: bold;
  vertical-align: middle;
  padding-left: 5px;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-header .cl-filterdlg-sortable {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(icons/grid-sortable.png);
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-header .cl-filterdlg-sortable.cl-filterdlg-asc {
  background-image: url(icons/grid-sort-asc.png);
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-header .cl-filterdlg-sortable.cl-filterdlg-desc {
  background-image: url(icons/grid-sort-desc.png);
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-header .cl-filterdlg-close {
  background-image: url(icons/close.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 16px;
  cursor: pointer;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-search {
  margin: 5px;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-search .cl-search-input {
  width: 100%;
  height: 25px;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-itemlist {
  margin: 5px;
  height: calc(100% - 10px);
  overflow-y: auto;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-itemlist .-cl-filterdlg-item-wrap {
  padding: 1px;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-itemlist .cl-filterdlg-item {
  height: 20px;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-itemlist .cl-filterdlg-item .cl-icon-wrapper {
  vertical-align: middle;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-itemlist .cl-filterdlg-item .cl-text {
  padding-left: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  vertical-align: middle;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-buttons {
  margin: 5px;
  padding-top: 5px;
  text-align: right;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-buttons .cl-button {
  margin-left: 10px;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-buttons .cl-button.cl-select {
  white-space: nowrap;
  padding: 2px 10px;
}
.cl-gridfilter .cl-filterdlg .cl-filterdlg-buttons .cl-button.cl-cancel {
  white-space: nowrap;
  padding: 2px 10px;
}
.cl-gridfilter .cl-filterdlg .cl-checkbox .cl-checkbox-icon {
  width: 18px;
  min-height: 18px;
  height: 1em;
  background-image: url(icons/checkbox.png);
  background-repeat: no-repeat;
  background-position: center;
}
.cl-gridfilter .cl-filterdlg .cl-checkbox .cl-checkbox-icon:focus {
  outline: 1px dotted black;
}
.cl-gridfilter .cl-filterdlg .cl-checkbox.cl-checked .cl-checkbox-icon {
  background-image: url(icons/checkbox-selected.png);
}
.cl-gridfilter .cl-filterdlg .cl-checkbox.cl-focus .cl-checkbox-icon {
  outline: 1px dotted black;
}
/* Grid cell 및 내부 컨트롤의 상속 처리 클래스 */
.cl-grid-ctrl-inherit {
  overflow: hidden;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  vertical-align: inherit;
}
.cl-grid-cell-inherit {
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  vertical-align: inherit;
  color: inherit;
}
/* 행 스타일 */
.cl-grid-row {
  /* Grid 보기 모드 스타일 */
  /* 순서 중요 */
  /* Grid 편집 모드 스타일 */
}
.cl-grid-row.cl-viewing .cl-grid-cell {
  /* input tag는 기본 v-align: middle 이지만, 
			view 모드에서는 div이기 때문에 CSS로 설정 */
}
.cl-grid-row.cl-viewing .cl-grid-cell .cl-inputbox,
.cl-grid-row.cl-viewing .cl-grid-cell .cl-maskeditor,
.cl-grid-row.cl-viewing .cl-grid-cell .cl-numbereditor,
.cl-grid-row.cl-viewing .cl-grid-cell .cl-dateinput,
.cl-grid-row.cl-viewing .cl-grid-cell .cl-combobox,
.cl-grid-row.cl-viewing .cl-grid-cell .cl-searchinput {
  vertical-align: middle;
}
.cl-grid-row.cl-inserted {
  background-color: rgba(225, 242, 253, 0.5);
  color: #444444;
}
.cl-grid-row.cl-inserted .cl-default-cell,
.cl-grid-row.cl-inserted .cl-inputbox,
.cl-grid-row.cl-inserted .cl-output,
.cl-grid-row.cl-inserted .cl-maskeditor,
.cl-grid-row.cl-inserted .cl-numbereditor,
.cl-grid-row.cl-inserted .cl-dateinput,
.cl-grid-row.cl-inserted .cl-button,
.cl-grid-row.cl-inserted .cl-textarea,
.cl-grid-row.cl-inserted .cl-combobox,
.cl-grid-row.cl-inserted .cl-treecell,
.cl-grid-row.cl-inserted .cl-fileinput,
.cl-grid-row.cl-inserted .cl-searchinput {
  color: #444444;
  font-weight: bold;
}
.cl-grid-row.cl-modified {
  background-color: rgba(250, 247, 249, 0.5);
  color: #444444;
  font-weight: bold;
}
.cl-grid-row.cl-modified .cl-default-cell,
.cl-grid-row.cl-modified .cl-inputbox,
.cl-grid-row.cl-modified .cl-output,
.cl-grid-row.cl-modified .cl-maskeditor,
.cl-grid-row.cl-modified .cl-numbereditor,
.cl-grid-row.cl-modified .cl-dateinput,
.cl-grid-row.cl-modified .cl-button,
.cl-grid-row.cl-modified .cl-textarea,
.cl-grid-row.cl-modified .cl-combobox,
.cl-grid-row.cl-modified .cl-treecell,
.cl-grid-row.cl-modified .cl-fileinput,
.cl-grid-row.cl-modified .cl-searchinput {
  color: #444444;
  font-weight: bold;
}
.cl-grid-row.cl-deleted {
  background-color: #F2F0F0;
  color: #C2C0C0;
  font-style: italic;
}
.cl-grid-row.cl-deleted .cl-default-cell,
.cl-grid-row.cl-deleted .cl-inputbox,
.cl-grid-row.cl-deleted .cl-output,
.cl-grid-row.cl-deleted .cl-maskeditor,
.cl-grid-row.cl-deleted .cl-numbereditor,
.cl-grid-row.cl-deleted .cl-dateinput,
.cl-grid-row.cl-deleted .cl-button,
.cl-grid-row.cl-deleted .cl-textarea,
.cl-grid-row.cl-deleted .cl-combobox,
.cl-grid-row.cl-deleted .cl-treecell,
.cl-grid-row.cl-deleted .cl-fileinput,
.cl-grid-row.cl-deleted .cl-searchinput {
  color: #C2C0C0;
  font-style: italic;
}
.cl-grid-row.cl-nullified {
  background-color: #F2F0F0;
  color: #C2C0C0;
  font-style: italic;
}
.cl-grid-row.cl-nullified .cl-default-cell,
.cl-grid-row.cl-nullified .cl-inputbox,
.cl-grid-row.cl-nullified .cl-output,
.cl-grid-row.cl-nullified .cl-maskeditor,
.cl-grid-row.cl-nullified .cl-numbereditor,
.cl-grid-row.cl-nullified .cl-dateinput,
.cl-grid-row.cl-nullified .cl-button,
.cl-grid-row.cl-nullified .cl-textarea,
.cl-grid-row.cl-nullified .cl-combobox,
.cl-grid-row.cl-nullified .cl-treecell,
.cl-grid-row.cl-nullified .cl-fileinput,
.cl-grid-row.cl-nullified .cl-searchinput {
  color: #C2C0C0;
  font-style: italic;
}
.cl-grid-row.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-grid-row.cl-selected .cl-merged {
  color: #333;
}
.cl-grid-row.cl-editing {
  background-color: rgba(247, 219, 188, 0.5);
  /*#D6E8F8;*/
  color: #444444;
}
/* 모든 셀 스타일 */
.cl-grid-cell {
  border-right: solid 1px #bbb;
  border-bottom: solid 1px #bbb;
  border-left: none 0px #bbb;
  border-top: none 0px #bbb;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  word-break: break-all;
  white-space: pre;
  /* columnMovable=true 사용시 컬럼이 이동될 가이드라인 스타일 */
}
.cl-grid-cell .cl-builtin.cl-checkbox,
.cl-grid-cell .cl-builtin.cl-radiobutton .cl-radiobutton-item {
  vertical-align: middle;
  text-align: center;
  padding: 0px;
}
.cl-grid-cell .cl-control.cl-border-none {
  border: none;
}
.cl-grid-cell .cl-control.cl-border-none.cl-focus {
  border: none;
}
.cl-grid-cell .cl-control.cl-border-none.cl-focus .cl-numbereditor-buttons {
  border-left-color: #C8C9CA;
}
.cl-grid-cell .cl-control.cl-checkboxgroup,
.cl-grid-cell .cl-control.cl-radiobutton {
  white-space: normal;
}
.cl-grid-cell.cl-dropleft {
  border-left: 2px dashed #757575;
}
.cl-grid-cell.cl-dropright {
  border-right: 2px dashed #757575;
}
.cl-grid-cell.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-grid-cell .cl-expander {
  background-image: url(icons/collapsed.png);
  background-repeat: no-repeat;
  background-position: center center;
  width: 20px;
  height: 20px;
  display: inline-block;
  cursor: pointer;
}
.cl-grid-cell .cl-expander.cl-collapsed {
  background-image: url(icons/collapsed.png);
}
.cl-grid-cell .cl-expander.cl-expanded {
  background-image: url(icons/expanded.png);
}
/* Grid 기본 셀 스타일 */
.cl-default-cell {
  vertical-align: middle;
}
.cl-default-cell .cl-text {
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  /* 말줄임 style 적용(한줄) */
}
.cl-default-cell.cl-control {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  color: inherit;
  vertical-align: inherit;
}
.cl-default-cell.cl-disabled {
  border-color: #ddd;
  background-image: none;
  background-color: #ccc;
  color: #333;
}
.cl-viewing .cl-maskeditor,
.cl-viewing .cl-inputbox {
  padding-right: 1px;
}
.cl-numbereditor {
  border: 1px solid #bbb;
  background-color: #fff;
  text-align: left;
  border-radius: 0px 0px 0px 0px;
  padding-top: 0px;
  color: #333;
  background-image: linear-gradient(#eee, white 3px);
  overflow: hidden;
}
.cl-numbereditor .cl-text {
  outline: none;
  background-color: transparent;
  border: 0;
  padding: 0 1px 0 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
}
.cl-numbereditor .cl-text:disabled {
  opacity: 1;
}
.cl-numbereditor .cl-text:-internal-autofill-selected + [data-role='placeholder'] {
  visibility: hidden;
}
.cl-numbereditor .cl-numbereditor-clear {
  width: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(icons/clear-button.png);
  background-origin: content-box;
  box-sizing: content-box;
  cursor: pointer;
}
.cl-numbereditor .cl-placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cl-numbereditor .cl-numbereditor-buttons {
  border-left: solid 1px #bbb;
  width: 16px;
}
.cl-numbereditor .cl-numbereditor-buttons .cl-numbereditor-increase {
  background-image: url(icons/up-spin.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center;
  cursor: pointer;
}
.cl-numbereditor .cl-numbereditor-buttons .cl-numbereditor-decrease {
  background-image: url(icons/down-spin.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center;
  cursor: pointer;
}
.cl-numbereditor:not(.cl-disabled) .cl-numbereditor-increase:hover {
  background-image: url(icons/up-spin-hover.png);
  background-color: #1F8BF0;
}
.cl-numbereditor:not(.cl-disabled) .cl-numbereditor-increase:active {
  background-image: url(icons/up-spin-active.png);
  background-color: #1369C5;
}
.cl-numbereditor:not(.cl-disabled) .cl-numbereditor-decrease:hover {
  background-image: url(icons/down-spin-hover.png);
  background-color: #1F8BF0;
}
.cl-numbereditor:not(.cl-disabled) .cl-numbereditor-decrease:active {
  background-image: url(icons/down-spin-active.png);
  background-color: #1369C5;
}
.cl-numbereditor.cl-disabled {
  border-color: #ddd;
  background-image: none;
  background-color: #ccc;
  color: #666;
}
.cl-numbereditor.cl-disabled .cl-numbereditor-buttons .cl-numbereditor-increase,
.cl-numbereditor.cl-disabled .cl-numbereditor-buttons .cl-numbereditor-decrease {
  cursor: auto;
}
.cl-numbereditor.cl-focus {
  border-color: #1369C5;
}
.cl-numbereditor.cl-focus .cl-numbereditor-buttons {
  border-left-color: #1369C5;
}
.cl-dateinput {
  border: 1px solid #bbb;
  background-color: #fff;
  text-align: left;
  color: #333;
}
.cl-dateinput .cl-text {
  border: 0px;
  padding-left: 3px;
  padding-right: 3px;
  padding-top: 0px;
  padding-bottom: 0px;
  outline: none;
  background-color: transparent;
  vertical-align: middle;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  color: inherit;
  text-align: inherit;
  text-decoration: inherit;
}
.cl-dateinput .cl-text.cl-preventinput {
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.cl-dateinput .cl-text:disabled {
  opacity: 1;
}
.cl-dateinput .cl-dateinput-clear {
  width: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(icons/clear-button.png);
  background-origin: content-box;
  box-sizing: content-box;
  cursor: pointer;
}
.cl-dateinput .cl-text:-internal-autofill-selected + [data-role='placeholder'] {
  visibility: hidden;
}
.cl-dateinput .cl-placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cl-dateinput .cl-dateinput-spinbuttons {
  border-left: solid 1px #bbb;
  width: 16px;
}
.cl-dateinput .cl-dateinput-spinbuttons .cl-dateinput-increase {
  background-image: url(icons/up-spin.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center;
  cursor: pointer;
}
.cl-dateinput .cl-dateinput-spinbuttons .cl-dateinput-decrease {
  background-image: url(icons/down-spin.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center;
  cursor: pointer;
}
.cl-dateinput:not(.cl-disabled) .cl-dateinput-increase:hover {
  background-image: url(icons/up-spin-hover.png);
  background-color: #1F8BF0;
}
.cl-dateinput:not(.cl-disabled) .cl-dateinput-increase:active {
  background-image: url(icons/up-spin-active.png);
  background-color: #1369C5;
}
.cl-dateinput:not(.cl-disabled) .cl-dateinput-decrease:hover {
  background-image: url(icons/down-spin-hover.png);
  background-color: #1F8BF0;
}
.cl-dateinput:not(.cl-disabled) .cl-dateinput-decrease:active {
  background-image: url(icons/down-spin-active.png);
  background-color: #1369C5;
}
.cl-dateinput .cl-dateinput-button {
  width: 16px;
  border: 0px;
  background-image: url(icons/calendar-button.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-origin: content-box;
  box-sizing: content-box;
  cursor: pointer;
}
.cl-dateinput.cl-disabled {
  color: #666;
  background-color: #ccc;
  border-color: #ddd;
}
.cl-dateinput.cl-disabled .cl-dateinput-button {
  background-image: url(icons/calendar-button-disabled.png);
  cursor: default;
}
.cl-dateinput.cl-disabled .cl-dateinput-spinbuttons .cl-dateinput-increase,
.cl-dateinput.cl-disabled .cl-dateinput-spinbuttons .cl-dateinput-decrease {
  cursor: default;
}
.cl-dateinput.cl-focus {
  border: #1369C5 solid 1px;
}
/* calendar */
.cl-calendar {
  padding: 2px;
  border: 1px solid #bbb;
  border-radius: 0px;
  background-color: #fff;
  padding: 0px;
}
.cl-calendar *:focus {
  outline: none;
}
.cl-calendar .cl-calendar-field .cl-calendar-header-wrapper {
  overflow: hidden;
}
.cl-calendar .cl-calendar-field .cl-calendar-content-wrapper {
  overflow: hidden;
}
.cl-calendar .cl-calendar-field .cl-calendar-footer-wrapper {
  overflow: hidden;
}
.cl-calendar:not(.cl-disabled) .cl-calendar-header-before {
  cursor: pointer;
}
.cl-calendar:not(.cl-disabled) .cl-calendar-header-before:hover,
.cl-calendar:not(.cl-disabled) .cl-calendar-header-before.cl-hover {
  background-image: url(icons/fast-rewind-hover.png);
}
.cl-calendar:not(.cl-disabled) .cl-calendar-header-after {
  cursor: pointer;
}
.cl-calendar:not(.cl-disabled) .cl-calendar-header-after:hover,
.cl-calendar:not(.cl-disabled) .cl-calendar-header-after.cl-hover {
  background-image: url(icons/fast-foward-hover.png);
}
.cl-calendar:not(.cl-disabled) .cl-calendar-header-prev {
  cursor: pointer;
}
.cl-calendar:not(.cl-disabled) .cl-calendar-header-prev:hover,
.cl-calendar:not(.cl-disabled) .cl-calendar-header-prev.cl-hover {
  background-image: url(icons/rewind-hover.png);
}
.cl-calendar:not(.cl-disabled) .cl-calendar-header-next {
  cursor: pointer;
}
.cl-calendar:not(.cl-disabled) .cl-calendar-header-next:hover,
.cl-calendar:not(.cl-disabled) .cl-calendar-header-next.cl-hover {
  background-image: url(icons/foward-hover.png);
}
.cl-calendar .cl-calendar-header {
  width: 100%;
  height: 100%;
  padding: 5px 0 5px 0;
  background-color: #f5f5f5;
  text-align: center;
}
.cl-calendar .cl-calendar-header .cl-calendar-header-before {
  min-width: 20px;
  min-height: 20px;
  text-align: center;
  background-image: url(icons/fast-rewind.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
  width: 30px;
}
.cl-calendar .cl-calendar-header .cl-calendar-header-before.cl-disabled {
  background-image: url(icons/fast-rewind-disabled.png);
}
.cl-calendar .cl-calendar-header .cl-calendar-header-after {
  min-width: 20px;
  min-height: 20px;
  text-align: center;
  background-image: url(icons/fast-foward.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
  width: 30px;
}
.cl-calendar .cl-calendar-header .cl-calendar-header-after.cl-disabled {
  background-image: url(icons/fast-foward-disabled.png);
}
.cl-calendar .cl-calendar-header .cl-calendar-header-prev {
  min-width: 20px;
  min-height: 20px;
  text-align: center;
  background-image: url(icons/rewind.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
  width: 30px;
}
.cl-calendar .cl-calendar-header .cl-calendar-header-prev.cl-disabled {
  background-image: url(icons/rewind-disabled.png);
}
.cl-calendar .cl-calendar-header .cl-calendar-header-next {
  min-width: 20px;
  min-height: 20px;
  text-align: center;
  background-image: url(icons/foward.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px auto;
  width: 30px;
}
.cl-calendar .cl-calendar-header .cl-calendar-header-next.cl-disabled {
  background-image: url(icons/foward-disabled.png);
}
.cl-calendar .cl-calendar-header .cl-calendar-header-text {
  cursor: default;
}
.cl-calendar .cl-calendar-header .cl-calendar-header-text:hover,
.cl-calendar .cl-calendar-header .cl-calendar-header-text.cl-hover {
  color: rgba(32, 138, 237, 0.5);
  cursor: pointer;
}
.cl-calendar:not(.cl-disabled) .cl-calendar-content-day:not(.cl-disabled):hover,
.cl-calendar:not(.cl-disabled) .cl-calendar-content-month:not(.cl-disabled):hover,
.cl-calendar:not(.cl-disabled) .cl-calendar-content-year:not(.cl-disabled):hover,
.cl-calendar:not(.cl-disabled) .cl-other-month:not(.cl-disabled):hover {
  cursor: pointer;
  background-color: #656565;
  color: white;
}
.cl-calendar:not(.cl-disabled) .cl-calendar-content-day.cl-selected,
.cl-calendar:not(.cl-disabled) .cl-calendar-content-month.cl-selected,
.cl-calendar:not(.cl-disabled) .cl-calendar-content-year.cl-selected,
.cl-calendar:not(.cl-disabled) .cl-other-month.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-calendar .cl-calendar-content {
  height: 100%;
  text-align: center;
}
.cl-calendar .cl-calendar-content .cl-calendar-content-week {
  background-color: #f5f5f5;
  vertical-align: inherit;
  text-align: inherit;
}
.cl-calendar .cl-calendar-content .cl-calendar-content-header {
  overflow: hidden;
  height: 30px;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: transparent;
  text-align: center;
  background-color: #f5f5f5;
  cursor: default;
}
.cl-calendar .cl-calendar-content .cl-other-month {
  color: #a7a6a6;
  overflow: hidden;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: #fff;
  vertical-align: inherit;
  text-align: inherit;
}
.cl-calendar .cl-calendar-content .cl-other-month.cl-hidden:hover {
  cursor: default;
  background: none;
}
.cl-calendar .cl-calendar-content .cl-other-month.cl-disabled {
  background-color: #f2f2f2;
  color: #a7a6a6;
  cursor: default;
}
.cl-calendar .cl-calendar-content .cl-other-month.cl-range-selected {
  background-color: #DAEFFC;
  color: #333435;
}
.cl-calendar .cl-calendar-content .cl-other-month.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-calendar .cl-calendar-content .cl-calendar-content-day,
.cl-calendar .cl-calendar-content .cl-calendar-content-month,
.cl-calendar .cl-calendar-content .cl-calendar-content-year {
  overflow: hidden;
  border-width: 1px 0 0 1px;
  border-style: solid;
  border-color: #fff;
  vertical-align: inherit;
  text-align: inherit;
}
.cl-calendar .cl-calendar-content .cl-calendar-content-day.cl-calendar-anniversary,
.cl-calendar .cl-calendar-content .cl-calendar-content-month.cl-calendar-anniversary,
.cl-calendar .cl-calendar-content .cl-calendar-content-year.cl-calendar-anniversary {
  box-shadow: inset 0 -0.25rem 0 red;
  color: red;
}
.cl-calendar .cl-calendar-content .cl-calendar-content-day.cl-calendar-defaultdate,
.cl-calendar .cl-calendar-content .cl-calendar-content-month.cl-calendar-defaultdate,
.cl-calendar .cl-calendar-content .cl-calendar-content-year.cl-calendar-defaultdate {
  color: rgba(32, 138, 237, 0.5);
}
.cl-calendar .cl-calendar-content .cl-calendar-content-day.cl-range-selected,
.cl-calendar .cl-calendar-content .cl-calendar-content-month.cl-range-selected,
.cl-calendar .cl-calendar-content .cl-calendar-content-year.cl-range-selected {
  background-color: #DAEFFC;
  color: #333435;
}
.cl-calendar .cl-calendar-content .cl-calendar-content-day.cl-selected,
.cl-calendar .cl-calendar-content .cl-calendar-content-month.cl-selected,
.cl-calendar .cl-calendar-content .cl-calendar-content-year.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-calendar .cl-calendar-content .cl-calendar-content-day.cl-disabled,
.cl-calendar .cl-calendar-content .cl-calendar-content-month.cl-disabled,
.cl-calendar .cl-calendar-content .cl-calendar-content-year.cl-disabled {
  background-color: #f2f2f2;
  color: #a7a6a6;
  cursor: default;
}
.cl-calendar:not(.cl-disabled) .cl-calendar-footer-text:hover {
  cursor: pointer;
  text-decoration: underline;
}
.cl-calendar .cl-calendar-footer {
  text-align: right;
  vertical-align: bottom;
  font-size: 0.7em;
  height: 26px;
  padding: 0 3px 3px 3px;
}
.cl-calendar .cl-calendar-footer .cl-calendar-footer-text {
  display: inline-block;
}
.cl-calendar .cl-calendar-footer.cl-disabled .cl-calendar-footer-text {
  cursor: default;
  color: #a7a6a6;
  text-decoration: none;
}
.cl-calendar .cl-calendar-footer.cl-hover:not(.cl-disabled) .cl-calendar-footer-text {
  text-decoration: underline;
}
.cl-calendar .cl-calendar-detail {
  font-size: 20px;
  margin-top: 1em;
}
.cl-calendar .cl-calendar-item-wrap,
.cl-calendar .cl-anniversary-wrap,
.cl-calendar .cl-calendar-more-wrap {
  font-size: 18px;
}
.cl-calendar .cl-calendar-item,
.cl-calendar .cl-anniversary,
.cl-calendar .cl-calendar-more {
  cursor: pointer;
  border-radius: 4px;
  padding-left: 8px;
  height: 16px;
  font-size: 12px;
  margin-left: 1px;
  margin-right: 9px;
}
.cl-calendar .cl-calendar-item .cl-text,
.cl-calendar .cl-anniversary .cl-text,
.cl-calendar .cl-calendar-more .cl-text {
  text-align: left;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 16px;
}
.cl-calendar .cl-calendar-item,
.cl-calendar .cl-anniversary {
  background-color: #f6bf26;
}
.cl-calendar .cl-calendar-item.cl-hidden,
.cl-calendar .cl-anniversary.cl-hidden {
  display: none;
}
.cl-calendar .cl-calendar-item.cl-selected,
.cl-calendar .cl-anniversary.cl-selected {
  box-shadow: inset 0px 0px 0px 1px #656565;
}
.cl-calendar .cl-calendar-more:hover {
  background-color: #f1f3f4;
}
.cl-calendar .cl-calendar-more .cl-text {
  font-weight: bold;
}
.cl-calendar.cl-anniversaries .cl-calendar-content-day.cl-calendar-anniversary {
  box-shadow: none;
  color: inherit;
}
.cl-calendar.cl-anniversaries .cl-calendar-content-day,
.cl-calendar.cl-anniversaries .cl-other-month.cl-calendar-content-mon,
.cl-calendar.cl-anniversaries .cl-other-month.cl-calendar-content-tue,
.cl-calendar.cl-anniversaries .cl-other-month.cl-calendar-content-wed,
.cl-calendar.cl-anniversaries .cl-other-month.cl-calendar-content-thu,
.cl-calendar.cl-anniversaries .cl-other-month.cl-calendar-content-fri,
.cl-calendar.cl-anniversaries .cl-other-month.cl-calendar-content-sat,
.cl-calendar.cl-anniversaries .cl-other-month.cl-calendar-content-sun {
  border-bottom: 1px solid #bbb;
  border-right: 1px solid #bbb;
  border-top: none;
  border-left: none;
}
.cl-calendar.cl-anniversaries .cl-calendar-content-day.cl-calendar-content-sat,
.cl-calendar.cl-anniversaries .cl-other-month.cl-calendar-content-sat {
  border-right: none;
}
.cl-calendar.cl-focus {
  border-color: #1369C5;
}
.cl-calendar.cl-focus .cl-calendar-content .cl-calendar-current {
  box-shadow: inset 0px 0px 0px 0.125rem #656565;
}
.cl-calendar.cl-popup {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
}
.cl-calendar.cl-popup.cl-calendar-year {
  width: 220px;
  height: 160px;
}
.cl-calendar.cl-popup.cl-calendar-month {
  width: 220px;
  height: 160px;
}
.cl-calendar.cl-popup.cl-calendar-day {
  width: 240px;
  height: 270px;
}
.cl-calendar.cl-popup .cl-calendar-content-day.cl-calendar-current,
.cl-calendar.cl-popup .cl-calendar-content-month.cl-calendar-current,
.cl-calendar.cl-popup .cl-calendar-content-year.cl-calendar-current {
  box-shadow: inset 0px 0px 0px 0.125rem #656565;
}
.cl-calendar.cl-disabled {
  opacity: .7;
}
.cl-calendar.cl-disabled .cl-calendar-header .cl-calendar-header-text {
  cursor: default;
}
.cl-calendar.cl-disabled .cl-calendar-header .cl-calendar-header-text:hover,
.cl-calendar.cl-disabled .cl-calendar-header .cl-calendar-header-text.cl-hover {
  color: inherit;
}
.cl-listbox {
  background-color: #fff;
  border: 1px solid #bbb;
  text-align: left;
  color: #333;
}
.cl-listbox .cl-customscrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cl-listbox .cl-customscrollbar::-webkit-scrollbar {
  display: none;
}
.cl-listbox .cl-listbox-list .cl-listbox-item {
  padding: 5px 10px;
}
.cl-listbox .cl-listbox-list .cl-listbox-item.cl-dropbottom {
  box-shadow: inset 0 -2px 0 #bbb;
}
.cl-listbox .cl-listbox-list .cl-listbox-item.cl-droptop {
  box-shadow: inset 0 2px 0 #bbb;
}
.cl-listbox .cl-listbox-list .cl-listbox-item:focus {
  outline: none;
}
.cl-listbox .cl-listbox-list .cl-listbox-item.cl-disabled {
  color: #666;
}
.cl-listbox .cl-listbox-list .cl-listbox-item.cl-disabled.cl-selected {
  color: #777;
  background-color: #ccc;
}
.cl-listbox .cl-listbox-list .cl-listbox-item.cl-selected {
  color: #FFFFFF;
  background-color: rgba(32, 138, 237, 0.5);
}
.cl-listbox .cl-listbox-list .cl-listbox-item .cl-icon {
  background-position: center center;
  background-size: 16px auto;
  background-repeat: no-repeat;
  width: 20px;
}
.cl-listbox .cl-listbox-list .cl-listbox-item .cl-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  word-break: break-all;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
}
.cl-listbox .cl-listbox-list .cl-listbox-item .cl-badge {
  white-space: nowrap;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}
.cl-listbox:not(.cl-disabled) .cl-listbox-item:not(.cl-disabled) {
  cursor: pointer;
}
.cl-listbox:not(.cl-disabled) .cl-listbox-item:not(.cl-disabled):not(.cl-selected).cl-hover,
.cl-listbox:not(.cl-disabled) .cl-listbox-item:not(.cl-disabled):not(.cl-selected):hover {
  color: #333435;
  background-color: #DAEFFC;
}
.cl-listbox.cl-disabled {
  color: #666;
}
.cl-listbox.cl-disabled .cl-listbox-item.cl-selected {
  color: #777;
  background-color: #ccc;
}
.cl-listbox.cl-focus {
  border: 1px solid #1369C5;
}
.cl-linkedlistbox {
  border: none;
  color: #333;
  text-align: left;
}
.cl-linkedlistbox .cl-customscrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cl-linkedlistbox .cl-customscrollbar::-webkit-scrollbar {
  display: none;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox {
  min-width: 150px;
  border-width: 0;
  vertical-align: top;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list-wrapper .cl-linkedlistbox-list {
  position: relative;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-header {
  padding: 5px 0px;
  border: 1px solid #bbb;
  border-bottom: none;
  background-image: linear-gradient(to bottom, #FEFFFF, #EFF0F1);
  text-align: center;
  font-style: normal;
  font-weight: bold;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list {
  border: 1px solid #bbb;
  background-color: white;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list .cl-linkedlistbox-item {
  box-sizing: border-box;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  padding: 5px 10px;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list .cl-linkedlistbox-item.cl-dropbottom {
  box-shadow: inset 0 -2px 0 #bbb;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list .cl-linkedlistbox-item.cl-droptop {
  box-shadow: inset 0 2px 0 #bbb;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list .cl-linkedlistbox-item .cl-icon {
  background-position: center center;
  background-size: 16px auto;
  background-repeat: no-repeat;
  width: 20px;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list .cl-linkedlistbox-item .cl-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list .cl-linkedlistbox-item .cl-linkedlistbox-arrow.cl-leaf {
  width: 16px;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list .cl-linkedlistbox-item .cl-linkedlistbox-arrow.cl-folder {
  width: 16px;
  background-image: url(icons/drill-down.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list .cl-linkedlistbox-item.cl-disabled {
  color: #666;
}
.cl-linkedlistbox .cl-linkedlistbox-listbox .cl-linkedlistbox-list .cl-linkedlistbox-item.cl-disabled.cl-selected {
  background-color: #ccc;
}
.cl-linkedlistbox.cl-focus .cl-linkedlistbox-header {
  border-color: #1369C5;
}
.cl-linkedlistbox.cl-focus .cl-linkedlistbox-list {
  border-color: #1369C5;
}
.cl-linkedlistbox.cl-disabled {
  color: #666;
}
.cl-linkedlistbox.cl-disabled .cl-linkedlistbox-item.cl-selected {
  color: #777;
  background-color: #ccc;
}
.cl-linkedlistbox.cl-dir-left .cl-linkedlistbox-listbox .cl-linkedlistbox-item {
  text-align: right;
}
.cl-linkedlistbox.cl-dir-left .cl-linkedlistbox-listbox .cl-linkedlistbox-arrow {
  transform: scale(-1);
}
.cl-linkedlistbox:not(.cl-disabled) .cl-linkedlistbox-item:not(.cl-disabled) {
  cursor: pointer;
}
.cl-linkedlistbox:not(.cl-disabled) .cl-linkedlistbox-item:not(.cl-disabled):hover,
.cl-linkedlistbox:not(.cl-disabled) .cl-linkedlistbox-item:not(.cl-disabled):focus {
  color: #333435;
  background-color: #DAEFFC;
  outline: none;
}
.cl-linkedlistbox:not(.cl-disabled) .cl-linkedlistbox-item:not(.cl-disabled):hover .cl-linkedlistbox-arrow.cl-folder,
.cl-linkedlistbox:not(.cl-disabled) .cl-linkedlistbox-item:not(.cl-disabled):focus .cl-linkedlistbox-arrow.cl-folder {
  background-image: url(icons/drill-down-hover.png);
}
.cl-linkedlistbox:not(.cl-disabled) .cl-linkedlistbox-item:not(.cl-disabled).cl-selected {
  color: #FFFFFF;
  background-color: rgba(32, 138, 237, 0.5);
}
.cl-linkedlistbox:not(.cl-disabled) .cl-linkedlistbox-item:not(.cl-disabled).cl-selected .cl-linkedlistbox-arrow.cl-folder {
  background-image: url(icons/drill-down-selected.png);
}
.cl-linkedlistbox.cl-dir-right .cl-expanding {
  animation-name: slide-r;
  transition-timing-function: ease-in-out;
  animation-duration: 0.3s;
}
.cl-linkedlistbox.cl-dir-left .cl-expanding {
  animation-name: slide-l;
  transition-timing-function: ease-in-out;
  animation-duration: 0.3s;
}
@keyframes slide-r {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-l {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/**
 * Menu
 */
.cl-menu {
  text-align: left;
}
.cl-menu .cl-menu-list {
  margin: 0px;
  padding: 0px;
  background-color: white;
  border: 1px solid #bbb;
}
.cl-menu .cl-menu-list.cl-sub {
  border: 1px solid #bbb;
}
.cl-menu .cl-menu-list.cl-sub .cl-menu-icon-wrapper {
  width: 16px;
}
.cl-menu .cl-menu-list.cl-sub .cl-menu-accesskey-wrapper {
  width: 25px;
}
.cl-menu .cl-menu-list.cl-sub .cl-menu-arrow-wrapper {
  width: 16px;
}
.cl-menu .cl-menu-list .cl-arrow-up {
  background-image: url(icons/up-spin.png);
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.cl-menu .cl-menu-list .cl-arrow-up:hover {
  background-image: url(icons/up-spin-hover.png);
  background-color: #1F8BF0;
}
.cl-menu .cl-menu-list .cl-arrow-up.cl-disabled {
  background-color: #ccc;
}
.cl-menu .cl-menu-list .cl-arrow-down {
  background-image: url(icons/down-spin.png);
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.cl-menu .cl-menu-list .cl-arrow-down:hover {
  background-image: url(icons/down-spin-hover.png);
  background-color: #1F8BF0;
}
.cl-menu .cl-menu-list .cl-arrow-down.cl-disabled {
  background-color: #ccc;
}
.cl-menu .cl-menu-list .cl-menu-item {
  padding: 5px 10px;
  white-space: nowrap;
  color: #333;
}
.cl-menu .cl-menu-list .cl-menu-item .cl-menu-icon {
  width: 16px;
  height: 16px;
  background-position: center center;
  background-size: 16px auto;
  background-repeat: no-repeat;
}
.cl-menu .cl-menu-list .cl-menu-item .cl-text {
  overflow: hidden;
  white-space: nowrap;
  color: inherit;
  text-align: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}
.cl-menu .cl-menu-list .cl-menu-item .cl-menu-accesskey {
  text-decoration: underline;
  text-transform: uppercase;
  text-align: right;
  text-overflow: initial;
  overflow: hidden;
  text-decoration-skip-ink: none;
  text-decoration-skip: none;
  width: 25px;
}
.cl-menu .cl-menu-list .cl-menu-item .cl-menu-arrow {
  width: 16px;
  height: 16px;
  background-position: center center;
  background-size: 16px auto;
  background-repeat: no-repeat;
}
.cl-menu .cl-menu-list .cl-menu-item.cl-folder > .cl-menu-arrow,
.cl-menu .cl-menu-list .cl-menu-item.cl-folder > .cl-menu-arrow-wrapper .cl-menu-arrow {
  background-image: url(icons/drill-down.png);
}
.cl-menu .cl-menu-list .cl-menu-item:not(.cl-disabled):not(.cl-selected):hover,
.cl-menu .cl-menu-list .cl-menu-item:not(.cl-disabled).cl-hover {
  background-color: #DAEFFC;
  color: #333435;
}
.cl-menu .cl-menu-list .cl-menu-item.cl-disabled {
  color: #666;
}
.cl-menu .cl-menu-list .cl-menu-item.cl-disabled.cl-selected {
  color: #777;
  background-color: #ccc;
}
.cl-menu .cl-menu-list .cl-menu-item.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-menu .cl-menu-list .cl-menu-item.cl-selected.cl-folder > .cl-menu-arrow,
.cl-menu .cl-menu-list .cl-menu-item.cl-selected.cl-folder > .cl-menu-arrow-wrapper > .cl-menu-arrow {
  background-image: url(icons/drill-down-selected.png);
}
.cl-menu.cl-focus .cl-menu-list {
  border-color: #1369C5;
}
.cl-menu:not(.cl-disabled) .cl-menu-item:not(.cl-disabled) {
  cursor: pointer;
}
.cl-menu.cl-disabled .cl-menu-item {
  color: #666;
}
.cl-menu.cl-disabled .cl-menu-item.cl-selected {
  background-color: #ccc;
  color: #777;
}
.cl-menu.cl-disabled .cl-menu-item.cl-selected.cl-folder > .cl-menu-arrow,
.cl-menu.cl-disabled .cl-menu-item.cl-selected.cl-folder > .cl-menu-arrow-wrapper > .cl-menu-arrow {
  background-image: url(icons/drill-down.png);
}
.cl-fileupload {
  border: 1px solid #bbb;
  background-color: #fff;
}
.cl-fileupload .cl-customscrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cl-fileupload .cl-customscrollbar::-webkit-scrollbar {
  display: none;
}
.cl-fileupload .cl-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.cl-fileupload .cl-fileupload-header {
  background-image: linear-gradient(to bottom, #FFFFFF, #F3F3F3);
  text-align: center;
  height: 24px;
  overflow: hidden;
  border-bottom: 1px solid #bbb;
}
.cl-fileupload .cl-fileupload-header .cl-fileupload-checkheader {
  vertical-align: middle;
  width: 24px;
  border-right: 1px solid #bbb;
}
.cl-fileupload .cl-fileupload-header .cl-fileupload-resize {
  width: 0px;
  position: relative;
}
.cl-fileupload .cl-fileupload-header .cl-fileupload-nameheader {
  position: relative;
  vertical-align: middle;
}
.cl-fileupload .cl-fileupload-header .cl-fileupload-sizeheader {
  width: 75px;
  border-left: 1px solid #bbb;
  vertical-align: middle;
  position: relative;
}
.cl-fileupload .cl-fileupload-header .cl-fileupload-sizeheader .cl-fileupload-col-resize {
  position: absolute;
  left: -1px;
  top: 0px;
  height: 24px;
  width: 4px;
  cursor: col-resize;
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile {
  height: 24px;
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-checkcolumn,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-checkcolumn {
  width: 24px;
  border-right: 1px solid transparent;
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon {
  width: 24px;
  background-image: url(icons/tree-file.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px;
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-mp3,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-mp3,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-wav,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-wav,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-flac,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-flac,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-midi,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-midi {
  background-image: url(icons/tree-file.png);
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-mkv,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-mkv,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-mp4,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-mp4,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-mpeg,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-mpeg,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-avi,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-avi {
  background-image: url(icons/tree-file.png);
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-xls,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-xls,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-xlsx,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-xlsx {
  background-image: url(icons/tree-file.png);
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-ppt,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-ppt,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-pptx,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-pptx {
  background-image: url(icons/tree-file.png);
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-doc,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-doc,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-docx,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-docx {
  background-image: url(icons/tree-file.png);
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-zip,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-zip,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-rar,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-rar,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-alz,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-alz {
  background-image: url(icons/tree-file.png);
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-png,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-png,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-gif,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-gif,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-jpg,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-jpg {
  background-image: url(icons/tree-file.png);
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-pdf,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-pdf {
  background-image: url(icons/tree-file.png);
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-fileicon.cl-filetype-txt,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-fileicon.cl-filetype-txt {
  background-image: url(icons/tree-file.png);
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-filename,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-filename {
  text-align: left;
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-file .cl-fileupload-sizecolumn,
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-sizecolumn {
  text-align: right;
  border-left: 1px solid transparent;
}
.cl-fileupload .cl-fileupload-detail .cl-fileupload-uploadedfile .cl-fileupload-download {
  width: 24px;
  background-image: url(icons/download.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px;
  cursor: pointer;
}
.cl-fileupload .cl-fileupload-footer {
  border-top: 1px solid #bbb;
  height: 36px;
}
.cl-fileupload .cl-fileupload-footer .cl-text {
  padding-left: 4px;
  text-align: left;
  font-weight: bold;
}
.cl-fileupload .cl-fileupload-footer .cl-fileupload-buttons {
  width: 100%;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  padding: 2px 0;
}
.cl-fileupload .cl-fileupload-footer .cl-fileupload-buttons .cl-fileupload-button {
  outline: none;
  background-image: -webkit-linear-gradient(#fefefe, #e6e6e6);
  background-image: -o-linear-gradient(#fefefe, #e6e6e6);
  background-image: linear-gradient(#fefefe, #e6e6e6);
  margin: 0 4px 0 0;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #b7b7b7;
  border-radius: 4px;
  padding: 2px 12px;
  cursor: pointer;
}
.cl-fileupload .cl-fileupload-footer .cl-fileupload-buttons .cl-fileupload-button:focus {
  border: solid 1px #1369C5;
}
.cl-fileupload .cl-fileupload-checkbox {
  width: 16px;
  height: 16px;
  background-image: url(icons/checkbox.png);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  cursor: pointer;
  outline: none;
}
.cl-fileupload .cl-fileupload-checkbox.cl-checked {
  background-image: url(icons/checkbox-selected.png);
}
.cl-fileupload .cl-fileupload-checkbox:focus {
  background-image: url(icons/checkbox-hover.png);
}
.cl-fileupload .cl-fileupload-checkbox:focus.cl-checked {
  background-image: url(icons/checkbox-hover-selected.png);
}
.cl-fileupload:not(.cl-disabled) .cl-fileupload-file:hover,
.cl-fileupload:not(.cl-disabled) .cl-fileupload-uploadedfile:hover {
  background-color: #a8e4ff;
}
.cl-fileupload:not(.cl-disabled) .cl-fileupload-button:hover {
  background-color: #686868;
  border: 1px solid #404040;
  background-image: -webkit-linear-gradient(top, #686868, #505050);
  background-image: -moz-linear-gradient(top, #686868, #505050);
  background-image: -ms-linear-gradient(top, #686868, #505050);
  background-image: -o-linear-gradient(top, #686868, #505050);
  background-image: linear-gradient(to bottom, #686868, #505050);
  text-decoration: none;
  color: #fff;
}
.cl-fileupload.cl-disabled {
  opacity: .7;
  cursor: auto;
}
.cl-fileupload.cl-disabled .cl-fileupload-footer .cl-fileupload-buttons .cl-fileupload-button {
  cursor: auto;
}
/*Button*/
.cl-button {
  box-sizing: border-box;
  overflow: hidden;
  background-image: linear-gradient(#FCFEFF, #E0E1E2);
  background-color: #E0E1E2;
  border-radius: 4px;
  border: solid 1px #959697;
  text-shadow: 0px 1px 0px white;
  cursor: pointer;
  text-align: center;
  display: block;
}
.cl-button .cl-icon {
  height: 1em;
  width: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
  background-origin: content-box;
  box-sizing: content-box;
}
.cl-button .cl-text {
  white-space: pre;
  word-wrap: normal;
  padding: 0px;
}
.cl-button .cl-text:focus {
  outline: none;
}
.cl-button:not(.cl-disabled):hover {
  color: #1068A4;
}
.cl-button.cl-focus {
  border: solid 1px #1369C5;
}
.cl-button:not(.cl-disabled).cl-activated,
.cl-button:not(.cl-disabled):active {
  background-image: linear-gradient(#ddd, #eee 5px, #ddd);
}
.cl-button.cl-border-none {
  border-radius: 0px;
}
.cl-button.cl-disabled {
  color: gray;
  cursor: default;
}
/*Accordion*/
.cl-accordion {
  /** 아코디언 루트 */
  border: 1px solid #bbb;
  padding: 4px;
  background-color: #fff;
  color: #333;
}
.cl-accordion .cl-accordion-header {
  /** 아코디언의 각 헤더 */
  padding: 2px 0px 2px 10px;
  background-color: #F2F4F5;
  color: #333;
  border: solid 1px #B7B8BA;
  text-align: left;
  vertical-align: middle;
  border-radius: 4px;
}
.cl-accordion .cl-accordion-header.cl-title-collapse {
  cursor: pointer;
  outline: none;
}
.cl-accordion .cl-accordion-header.cl-title-collapse:focus {
  text-decoration: underline;
}
.cl-accordion .cl-accordion-header .cl-text {
  vertical-align: inherit;
  word-break: break-all;
  white-space: pre-wrap;
}
.cl-accordion .cl-accordion-header .cl-accordion-expander {
  /** 아코디언 펼침 버튼 */
  width: 25px;
  background-image: url(icons/expand.png);
  background-repeat: no-repeat;
  background-position: center center;
  cursor: pointer;
}
.cl-accordion .cl-accordion-header:hover {
  /* 아코디언 헤더에 마우스가 호버되었을 떄의 스타일 */
  background-color: #D7D7D9;
}
.cl-accordion .cl-accordion-header.cl-activated {
  /* 아코디언 헤더를 클릭했을 때의 스타일 */
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  background-color: rgba(32, 138, 237, 0.5);
  border-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-accordion .cl-accordion-header.cl-activated .cl-accordion-expander {
  /* 클릭된 헤더의 펼침 버튼 아이콘 */
  background-image: url(icons/collapse-selected.png);
}
.cl-accordion .cl-accordion-header.cl-disabled.cl-title-collapse {
  cursor: auto;
}
.cl-accordion .cl-accordion-header.cl-disabled .cl-accordion-expander {
  cursor: auto;
}
.cl-accordion .cl-accordion-section:not(.cl-accordion-placeholder) .cl-accordion-content {
  border: solid 1px rgba(32, 138, 237, 0.5);
  border-top: none;
  display: block;
  position: relative;
}
.cl-accordion .cl-accordion-section + .cl-accordion-header {
  margin-top: 4px;
}
.cl-accordion .cl-accordion-section + .cl-accordion-header.cl-first {
  margin-top: 0px;
}
.cl-accordion.cl-disabled .cl-accordion-header.cl-activated {
  background-color: #ccc;
  border-color: #ccc;
  color: #777;
}
.cl-accordion.cl-disabled .cl-accordion-header.cl-title-collapse {
  cursor: auto;
}
.cl-accordion.cl-disabled .cl-accordion-header .cl-accordion-expander {
  cursor: auto;
}
.cl-accordion.cl-disabled .cl-accordion-header:hover {
  /* 아코디언 헤더에 마우스가 호버되었을 떄의 스타일 */
  background-color: #F2F4F5;
}
.cl-accordion.cl-disabled .cl-accordion-section:not(.cl-accordion-placeholder) .cl-accordion-content {
  border-color: #ccc;
}
/*inputbox*/
.cl-inputbox {
  border: 1px solid #bbb;
  background-color: #fff;
  text-align: left;
  color: #333;
  background-image: linear-gradient(#eee, white 3px);
}
.cl-inputbox .cl-text {
  display: block;
  width: calc(100% - 1px);
  height: 100%;
  border: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  outline: none;
}
.cl-inputbox .cl-text:disabled {
  opacity: 1;
}
.cl-inputbox .cl-text:-internal-autofill-selected + [data-role='placeholder'] {
  visibility: hidden;
}
.cl-inputbox .cl-inputbox-clear {
  width: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(icons/clear-button.png);
  background-origin: content-box;
  box-sizing: content-box;
  cursor: pointer;
}
.cl-inputbox .cl-placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cl-inputbox.cl-focus {
  border-color: #1369C5;
}
.cl-inputbox.cl-disabled {
  border-color: #ddd;
  background-image: none;
  background-color: #ccc;
  color: #666;
}
.cl-inputbox.cl-disabled .cl-inputbox-clear {
  background-image: url(icons/clear-button-disabled.png);
  cursor: default;
}
.cl-inputbox:not(.cl-disabled) .cl-inputbox-clear:hover {
  background-image: url(icons/clear-button-hover.png);
}
.cl-inputbox:not(.cl-disabled) .cl-inputbox-clear:active {
  background-image: url(icons/clear-button-hover.png);
  opacity: 70%;
}
/*searchinput*/
.cl-searchinput {
  border: 1px solid #bbb;
  background-color: #fff;
  text-align: left;
  color: #333;
  background-image: linear-gradient(#eee, white 3px);
  /* 서치 인풋 포커스 상태 */
}
.cl-searchinput .cl-text {
  border: 0px;
  padding: 0 3px 0 3px;
  outline: none;
  height: 100%;
  background-color: transparent;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  color: inherit;
  text-align: inherit;
  text-decoration: inherit;
}
.cl-searchinput .cl-text:disabled {
  opacity: 1;
}
.cl-searchinput .cl-text:-internal-autofill-selected + [data-role='placeholder'] {
  visibility: hidden;
}
.cl-searchinput .cl-placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cl-searchinput.cl-focus {
  border-color: #1369C5;
}
.cl-searchinput.cl-disabled {
  border-color: #ddd;
  background-image: none;
  background-color: #ccc;
  color: #333;
}
.cl-searchinput.cl-disabled .cl-searchinput-search {
  background-image: url(icons/search-button-disabled.png);
  cursor: default;
}
.cl-searchinput.cl-disabled .cl-searchinput-clear {
  background-image: url(icons/clear-button-disabled.png);
  cursor: default;
}
.cl-searchinput:not(.cl-disabled) .cl-searchinput-clear:hover {
  background-image: url(icons/clear-button-hover.png);
}
.cl-searchinput:not(.cl-disabled) .cl-searchinput-clear:active {
  background-image: url(icons/clear-button-hover.png);
  opacity: 70%;
}
.cl-searchinput:not(.cl-disabled) .cl-searchinput-search:hover {
  background-image: url(icons/search-button-hover.png);
}
.cl-searchinput:not(.cl-disabled) .cl-searchinput-search:active {
  background-image: url(icons/search-button-hover.png);
  opacity: 70%;
}
.cl-searchinput .cl-searchinput-search {
  width: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(icons/search-button.png);
  background-origin: content-box;
  box-sizing: content-box;
  cursor: pointer;
}
.cl-searchinput .cl-searchinput-clear {
  width: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(icons/clear-button.png);
  background-origin: content-box;
  box-sizing: content-box;
  cursor: pointer;
}
.cl-searchinput.cl-disabled {
  color: #666;
  background-color: #ccc;
  border-color: #ddd;
}
.cl-searchinput.cl-focus {
  border-color: #1369C5;
}
/**
* Slider
*/
.cl-slider {
  position: relative;
  touch-action: none;
  overflow: hidden;
}
.cl-slider * {
  box-sizing: border-box;
}
.cl-slider.cl-horizontal {
  min-width: 40px;
  min-height: 20px;
}
.cl-slider.cl-vertical {
  min-width: 20px;
  min-height: 40px;
}
.cl-slider .cl-slider-bar {
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 4px;
  position: absolute;
}
.cl-slider .cl-slider-bar.cl-horizontal {
  right: 8px;
  left: 8px;
  height: 7px;
  top: calc(50% - 4px);
  background-image: linear-gradient(#ddd, white 3px);
}
.cl-slider .cl-slider-bar.cl-vertical {
  top: 8px;
  bottom: 8px;
  width: 7px;
  left: calc(50% - 4px);
  background-image: linear-gradient(to right, #ddd, white 3px);
}
.cl-slider .cl-slider-bar .cl-slider-handle {
  position: absolute;
  width: 16px;
  height: 16px;
  background-image: url("icons/slider-thumb.png");
  background-repeat: no-repeat;
  background-position: center;
  outline: none;
}
.cl-slider .cl-slider-bar .cl-slider-handle.cl-horizontal {
  top: -5px;
  transform: translateX(-8px);
}
.cl-slider .cl-slider-bar .cl-slider-handle.cl-vertical {
  left: -5px;
  transform: translateY(-8px);
}
.cl-slider .cl-slider-bar .cl-slider-range {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(126, 188, 245, 0.5);
  border-radius: 4px;
}
.cl-slider.cl-focus .cl-slider-bar {
  border-color: #1369C5;
}
.cl-slider.cl-disabled .cl-slider-handle {
  background-image: url("icons/slider-thumb-disabled.png");
}
.cl-slider.cl-disabled .cl-slider-range {
  background-color: #ccc;
}
.cl-slider:not(.cl-disabled) .cl-slider-bar .cl-slider-handle {
  cursor: pointer;
}
.cl-slider:not(.cl-disabled) .cl-slider-bar .cl-slider-handle:hover,
.cl-slider:not(.cl-disabled) .cl-slider-bar .cl-slider-handle.cl-hover {
  background-image: url("icons/slider-thumb-hover.png");
}
.cl-slider-tap {
  -webkit-transition: top .3s, left .3s, right .3s, bottom .3s;
  transition: top .3s, left .3s, right .3s, bottom .3s ;
}
/*Output*/
.cl-output {
  color: #333;
  text-align: left;
  vertical-align: middle;
  overflow: hidden;
}
.cl-output.cl-disabled {
  color: #666;
}
.cl-output .cl-text {
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  /* 말줄임 style 적용(한줄) */
  word-break: break-all;
  white-space: pre-wrap;
}
.cl-writingmode-horizontal-tb {
  -ms-writing-mode: lr-tb;
  -webkit-writing-mode: horizontal-tb;
  -moz-writing-mode: horizontal-tb;
  -ms-writing-mode: horizontal-tb;
  writing-mode: horizontal-tb;
}
.cl-writingmode-vertical-lr {
  -ms-writing-mode: tb-lr;
  -webkit-writing-mode: vertical-lr;
  -moz-writing-mode: vertical-lr;
  -ms-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
}
.cl-writingmode-vertical-rl {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* textrea*/
.cl-textarea {
  border: 1px solid #bbb;
  background-color: #fff;
  color: #333;
  background-image: linear-gradient(#eee, white 3px);
  text-align: left;
}
.cl-textarea .cl-customscrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cl-textarea .cl-customscrollbar::-webkit-scrollbar {
  display: none;
}
.cl-textarea .cl-text {
  height: 100%;
  width: 100%;
  border: 0px;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  line-height: inherit;
  outline: none;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0px;
  white-space: pre-wrap;
  vertical-align: top;
}
.cl-textarea .cl-text:disabled {
  opacity: 1;
}
.cl-textarea.cl-disabled {
  border-color: #ddd;
  background-image: none;
  background-color: #ccc;
  color: #666;
}
.cl-textarea.cl-focus {
  border-color: #1369C5;
}
/**
 * RadioButton
 */
/* div (RadioButton Root Class) */
/* 라디오 버튼 */
.cl-radiobutton {
  overflow: hidden;
  text-align: left;
  color: #333;
  vertical-align: middle;
  cursor: pointer;
  /* 라디오 버튼 아이템 */
  /* 라디오버튼 focus 스타일 */
  /* disabled 라디오버튼 스타일 */
  /* iconAlign=right 스타일 */
  /* iconAlign=top 스타일 */
  /* iconAlign=bottom 스타일 */
  /* hideIcon=true 스타일 */
}
.cl-radiobutton * {
  cursor: pointer;
}
.cl-radiobutton.cl-flow {
  vertical-align: top;
}
.cl-radiobutton .cl-radiobutton-item {
  padding: 3px;
  overflow: hidden;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  /* 아이콘 정렬을 설정 */
  /* 라디오 버튼 아이템 텍스트 */
  /* 라디오아이템 아이콘 스타일 */
  /* 라디오아이템 hover시 아이콘 스타일 */
  /* 선택된 라디오아이템 아이콘 스타일 */
  /* disabled 라디오아이템 스타일 */
}
.cl-radiobutton .cl-radiobutton-item .cl-icon-wrapper {
  vertical-align: baseline;
  text-align: inherit;
}
.cl-radiobutton .cl-radiobutton-item .cl-text {
  padding-left: 3px;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  /* 말줄임 style 적용(한줄) */
  /* 여러 줄 style 적용 */
  white-space: pre-wrap;
  word-break: break-all;
}
.cl-radiobutton .cl-radiobutton-item .cl-radiobutton-icon {
  background-image: url(icons/radio.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  min-height: 18px;
  height: 1em;
  margin-left: 2px;
  vertical-align: inherit;
  outline: none;
}
.cl-radiobutton .cl-radiobutton-item:hover .cl-radiobutton-icon,
.cl-radiobutton .cl-radiobutton-item.cl-hover .cl-radiobutton-icon {
  background-image: url(icons/radio-hover.png);
}
.cl-radiobutton .cl-radiobutton-item.cl-selected {
  /* 선택된 라디오아이템 hover시 아이콘 스타일 */
}
.cl-radiobutton .cl-radiobutton-item.cl-selected .cl-radiobutton-icon {
  background-image: url(icons/radio-selected.png);
}
.cl-radiobutton .cl-radiobutton-item.cl-selected:hover .cl-radiobutton-icon,
.cl-radiobutton .cl-radiobutton-item.cl-selected.cl-hover .cl-radiobutton-icon {
  background-image: url(icons/radio-hover-selected.png);
}
.cl-radiobutton .cl-radiobutton-item.cl-disabled {
  cursor: default;
  /* disabled 라디오아이템 hover시 아이콘 스타일 */
  /* 선택된 disabled 라디오아이템 아이콘 스타일 */
}
.cl-radiobutton .cl-radiobutton-item.cl-disabled * {
  cursor: default;
}
.cl-radiobutton .cl-radiobutton-item.cl-disabled .cl-text {
  color: #666;
}
.cl-radiobutton .cl-radiobutton-item.cl-disabled:hover .cl-radiobutton-icon,
.cl-radiobutton .cl-radiobutton-item.cl-disabled.cl-hover .cl-radiobutton-icon {
  background-image: url(icons/radio.png);
}
.cl-radiobutton .cl-radiobutton-item.cl-disabled.cl-selected {
  /* 선택된 disabled 라디오아이템 hover시 아이콘 스타일 */
}
.cl-radiobutton .cl-radiobutton-item.cl-disabled.cl-selected .cl-radiobutton-icon {
  background-image: url(icons/radio-disabled-selected.png);
}
.cl-radiobutton .cl-radiobutton-item.cl-disabled.cl-selected:hover .cl-radiobutton-icon,
.cl-radiobutton .cl-radiobutton-item.cl-disabled.cl-selected.cl-hover .cl-radiobutton-icon {
  background-image: url(icons/radio-disabled-selected.png);
}
.cl-radiobutton:focus .cl-radiobutton-item,
.cl-radiobutton.cl-focus .cl-radiobutton-item {
  /* 라디오버튼 focus시 selected 라디오아이템 스타일 */
}
.cl-radiobutton:focus .cl-radiobutton-item .cl-radiobutton-icon,
.cl-radiobutton.cl-focus .cl-radiobutton-item .cl-radiobutton-icon {
  outline: none;
}
.cl-radiobutton:focus .cl-radiobutton-item .cl-radiobutton-icon:focus,
.cl-radiobutton.cl-focus .cl-radiobutton-item .cl-radiobutton-icon:focus,
.cl-radiobutton:focus .cl-radiobutton-item .cl-text:focus,
.cl-radiobutton.cl-focus .cl-radiobutton-item .cl-text:focus,
.cl-radiobutton:focus .cl-radiobutton-item .cl-radiobutton-icon.cl-focus,
.cl-radiobutton.cl-focus .cl-radiobutton-item .cl-radiobutton-icon.cl-focus,
.cl-radiobutton:focus .cl-radiobutton-item .cl-text.cl-focus,
.cl-radiobutton.cl-focus .cl-radiobutton-item .cl-text.cl-focus {
  outline: 1px dotted black;
}
.cl-radiobutton:focus .cl-radiobutton-item.cl-disabled .cl-radiobutton-icon:focus,
.cl-radiobutton.cl-focus .cl-radiobutton-item.cl-disabled .cl-radiobutton-icon:focus,
.cl-radiobutton:focus .cl-radiobutton-item.cl-disabled .cl-text:focus,
.cl-radiobutton.cl-focus .cl-radiobutton-item.cl-disabled .cl-text:focus,
.cl-radiobutton:focus .cl-radiobutton-item.cl-disabled .cl-radiobutton-icon.cl-focus,
.cl-radiobutton.cl-focus .cl-radiobutton-item.cl-disabled .cl-radiobutton-icon.cl-focus,
.cl-radiobutton:focus .cl-radiobutton-item.cl-disabled .cl-text.cl-focus,
.cl-radiobutton.cl-focus .cl-radiobutton-item.cl-disabled .cl-text.cl-focus {
  outline: none;
}
.cl-radiobutton.cl-disabled {
  color: #666;
  cursor: default;
}
.cl-radiobutton.cl-disabled * {
  cursor: default;
}
.cl-radiobutton.cl-disabled .cl-radiobutton-item {
  /* disabled 라디오버튼에 라디오아이템 hover시 아이콘 스타일 */
  /* disabled 라디오버튼의 선택된 라디오아이템 아이콘 스타일 */
}
.cl-radiobutton.cl-disabled .cl-radiobutton-item:hover .cl-radiobutton-icon,
.cl-radiobutton.cl-disabled .cl-radiobutton-item.cl-hover .cl-radiobutton-icon {
  background-image: url(icons/radio.png);
}
.cl-radiobutton.cl-disabled .cl-radiobutton-item.cl-selected {
  /* disabled 라디오버튼의 선택된 라디오아이템 hover시 아이콘 스타일 */
}
.cl-radiobutton.cl-disabled .cl-radiobutton-item.cl-selected .cl-radiobutton-icon {
  background-image: url(icons/radio-disabled-selected.png);
}
.cl-radiobutton.cl-disabled .cl-radiobutton-item.cl-selected:hover .cl-radiobutton-icon,
.cl-radiobutton.cl-disabled .cl-radiobutton-item.cl-selected.cl-hover .cl-radiobutton-icon {
  background-image: url(icons/radio-disabled-selected.png);
}
.cl-radiobutton.cl-fixedWidth .cl-radiobutton-item .cl-icon-wrapper {
  width: 18px;
}
.cl-radiobutton.cl-iconalign-right .cl-radiobutton-item .cl-radiobutton-icon {
  margin-left: 0px;
  margin-right: 2px;
}
.cl-radiobutton.cl-iconalign-right .cl-radiobutton-item .cl-text {
  padding-left: 0px;
  padding-right: 3px;
}
.cl-radiobutton.cl-iconalign-top .cl-radiobutton-item .cl-icon-wrapper {
  vertical-align: top;
  text-align: center;
}
.cl-radiobutton.cl-iconalign-top .cl-radiobutton-item .cl-radiobutton-icon {
  margin-left: 0px;
  height: 18px;
}
.cl-radiobutton.cl-iconalign-top .cl-radiobutton-item .cl-text {
  padding-left: 0px;
  padding-top: 3px;
}
.cl-radiobutton.cl-iconalign-top.cl-fixedWidth .cl-icon-wrapper {
  width: auto;
}
.cl-radiobutton.cl-iconalign-bottom .cl-radiobutton-item .cl-icon-wrapper {
  vertical-align: top;
  text-align: center;
}
.cl-radiobutton.cl-iconalign-bottom .cl-radiobutton-item .cl-radiobutton-icon {
  margin-left: 0px;
  height: 18px;
}
.cl-radiobutton.cl-iconalign-bottom .cl-radiobutton-item .cl-text {
  padding-left: 0px;
  padding-bottom: 3px;
}
.cl-radiobutton.cl-iconalign-bottom.cl-fixedWidth .cl-icon-wrapper {
  width: auto;
}
.cl-radiobutton.cl-iconalign-none .cl-radiobutton-item .cl-text {
  padding-left: 0px;
}
/**
 * Checkbox
 * .cl-checkbox 의 경우 체크박스 컨트롤과 체크박스그룹 컨트롤과 그리드 내의 체크박스에서 사용되어,
 * hover, disabled 등의 상태를 가질 때, 해당 컨트롤의 우선순위를 두기 위해
 * 똑같은 아이콘의 경우에도 중복하여 추가된 경우가 있습니다.
 */
/**
 * 체크박스
 */
.cl-checkbox {
  text-align: left;
  vertical-align: middle;
  padding: 3px;
  cursor: pointer;
  /* 아이콘 정렬을 설정 */
  /* 체크 박스 텍스트 */
  /* 체크박스 아이콘 스타일 */
  /* 체크박스 hover시 아이콘 스타일 */
  /* 체크된 체크박스 아이콘 스타일 */
  /* disabled 체크박스 스타일 */
  /* 체크박스 focus 스타일 */
  /* iconAlign=right 스타일 */
  /* iconAlign=top 스타일 */
  /* iconAlign=bottom 스타일 */
  /* hideIcon=true 스타일 */
}
.cl-checkbox * {
  cursor: pointer;
}
.cl-checkbox .cl-icon-wrapper {
  vertical-align: baseline;
}
.cl-checkbox .cl-text {
  padding-left: 3px;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  /* 말줄임 style 적용(한줄) */
  /* 여러 줄 style 적용 */
  white-space: pre-wrap;
  word-break: break-all;
}
.cl-checkbox .cl-checkbox-icon {
  background-image: url(icons/checkbox.png);
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  min-height: 18px;
  height: 1em;
  vertical-align: inherit;
  text-align: inherit;
  outline: none;
}
.cl-checkbox:hover .cl-checkbox-icon,
.cl-checkbox.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox-hover.png);
}
.cl-checkbox.cl-checked {
  /* 체크된 체크박스 hover시 아이콘 스타일 */
}
.cl-checkbox.cl-checked .cl-checkbox-icon {
  background-image: url(icons/checkbox-selected.png);
}
.cl-checkbox.cl-checked:hover .cl-checkbox-icon,
.cl-checkbox.cl-checked.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox-hover-selected.png);
}
.cl-checkbox.cl-disabled {
  cursor: default;
  /* disabled 체크박스 hover시 아이콘 스타일 */
  /* 체크된 disabled 체크박스 아이콘 스타일 */
}
.cl-checkbox.cl-disabled * {
  cursor: default;
}
.cl-checkbox.cl-disabled .cl-text {
  color: #666;
}
.cl-checkbox.cl-disabled:hover .cl-checkbox-icon,
.cl-checkbox.cl-disabled.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox.png);
}
.cl-checkbox.cl-disabled.cl-checked {
  /* 체크된 disabled 체크박스 hover시 아이콘 스타일 */
}
.cl-checkbox.cl-disabled.cl-checked .cl-checkbox-icon {
  background-image: url(icons/checkbox-disabled-selected.png);
}
.cl-checkbox.cl-disabled.cl-checked:hover .cl-checkbox-icon,
.cl-checkbox.cl-disabled.cl-checked.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox-disabled-selected.png);
}
.cl-checkbox.cl-focus .cl-checkbox-icon {
  outline: 1px dotted black;
}
.cl-checkbox.cl-focus.cl-iconalign-none .cl-text {
  outline: 1px dotted black;
}
.cl-checkbox.cl-partialchecked .cl-checkbox-icon {
  background-image: url(icons/checkbox-partial-selected.png);
}
.cl-checkbox.cl-partialchecked:hover .cl-checkbox-icon,
.cl-checkbox.cl-partialchecked.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox-partial-selected.png);
}
.cl-checkbox.cl-partialchecked.cl-disabled .cl-checkbox-icon {
  background-image: url(icons/checkbox-disabled-partial-selected.png);
}
.cl-checkbox.cl-partialchecked.cl-disabled:hover .cl-checkbox-icon,
.cl-checkbox.cl-partialchecked.cl-disabled.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox-disabled-partial-selected.png);
}
.cl-checkbox.cl-iconalign-right .cl-text {
  padding-left: 0px;
  padding-right: 3px;
}
.cl-checkbox.cl-iconalign-top .cl-icon-wrapper {
  vertical-align: top;
  text-align: center;
}
.cl-checkbox.cl-iconalign-top .cl-text {
  padding-left: 0px;
  padding-top: 3px;
}
.cl-checkbox.cl-iconalign-bottom .cl-icon-wrapper {
  vertical-align: top;
  text-align: center;
}
.cl-checkbox.cl-iconalign-bottom .cl-text {
  padding-left: 0px;
  padding-bottom: 3px;
}
.cl-checkbox.cl-iconalign-none .cl-text {
  padding-left: 0px;
}
.cl-checkbox.cl-fixedWidth .cl-icon-wrapper {
  width: 18px;
}
/**
 * 체크박스그룹
 */
.cl-checkboxgroup {
  color: #333;
  overflow: hidden;
  vertical-align: middle;
  text-align: left;
  cursor: pointer;
  /* 체크박스그룹 focus 스타일 */
  /* disabled 체크박스그룹 스타일 */
  /* 체크박스그룹에 체크박스 스타일 */
  /* iconAlign=right 스타일 */
  /* iconAlign=top 스타일 */
  /* iconAlign=bottom 스타일 */
  /* hideIcon=true 스타일 */
}
.cl-checkboxgroup * {
  cursor: pointer;
}
.cl-checkboxgroup.cl-flow {
  vertical-align: top;
}
.cl-checkboxgroup.cl-focus {
  /* 체크박스그룹 내에 focus를 받은 체크박스 focus 아이콘 스타일 */
}
.cl-checkboxgroup.cl-focus .cl-checkbox .cl-checkbox-icon:focus,
.cl-checkboxgroup.cl-focus .cl-checkbox .cl-text:focus {
  outline: 1px dotted black;
}
.cl-checkboxgroup.cl-focus .cl-checkbox.cl-disabled .cl-checkbox-icon:focus,
.cl-checkboxgroup.cl-focus .cl-checkbox.cl-disabled .cl-text:focus,
.cl-checkboxgroup.cl-focus .cl-checkbox.cl-disabled .cl-checkbox-icon.cl-focus,
.cl-checkboxgroup.cl-focus .cl-checkbox.cl-disabled .cl-text.cl-focus {
  outline: none;
}
.cl-checkboxgroup.cl-disabled {
  cursor: default;
  /* disabled 체크박스그룹에 체크박스 스타일 */
}
.cl-checkboxgroup.cl-disabled * {
  cursor: default;
}
.cl-checkboxgroup.cl-disabled .cl-checkbox {
  /* disabled 체크박스그룹에 체크박스 hover시 아이콘 스타일 */
  /* disabled 체크박스그룹 내에 체크된 체크박스 아이콘 스타일 */
}
.cl-checkboxgroup.cl-disabled .cl-checkbox .cl-text {
  color: #666;
}
.cl-checkboxgroup.cl-disabled .cl-checkbox:hover .cl-checkbox-icon,
.cl-checkboxgroup.cl-disabled .cl-checkbox.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox.png);
}
.cl-checkboxgroup.cl-disabled .cl-checkbox.cl-checked {
  /* disabled 체크박스그룹 내에 체크된 체크박스 hover시 아이콘 스타일 */
}
.cl-checkboxgroup.cl-disabled .cl-checkbox.cl-checked .cl-checkbox-icon {
  background-image: url(icons/checkbox-disabled-selected.png);
}
.cl-checkboxgroup.cl-disabled .cl-checkbox.cl-checked:hover .cl-checkbox-icon,
.cl-checkboxgroup.cl-disabled .cl-checkbox.cl-checked.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox-disabled-selected.png);
}
.cl-checkboxgroup.cl-fixedWidth .cl-checkbox .cl-icon-wrapper {
  width: 18px;
}
.cl-checkboxgroup .cl-checkbox {
  padding: 3px;
  overflow: hidden;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  /* 체크박스그룹에 체크박스 hover시 아이콘 스타일 */
  /* 체크박스그룹에 체크된 체크박스 아이콘 스타일 */
  /* 체크박스그룹에 disabled 체크박스 스타일 */
}
.cl-checkboxgroup .cl-checkbox .cl-icon-wrapper {
  vertical-align: baseline;
  text-align: inherit;
}
.cl-checkboxgroup .cl-checkbox .cl-text {
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
}
.cl-checkboxgroup .cl-checkbox:hover .cl-checkbox-icon,
.cl-checkboxgroup .cl-checkbox.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox-hover.png);
}
.cl-checkboxgroup .cl-checkbox.cl-checked {
  /* 체크박스그룹에 체크된 체크박스 hover시 아이콘 스타일 */
}
.cl-checkboxgroup .cl-checkbox.cl-checked .cl-checkbox-icon {
  background-image: url(icons/checkbox-selected.png);
}
.cl-checkboxgroup .cl-checkbox.cl-checked:hover .cl-checkbox-icon,
.cl-checkboxgroup .cl-checkbox.cl-checked.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox-hover-selected.png);
}
.cl-checkboxgroup .cl-checkbox.cl-disabled {
  color: #666;
  cursor: default;
  /* 체크박스그룹에 disabled 체크박스 hover시 아이콘 스타일 */
  /* 체크박스그룹에 disabled 체크된 체크박스 아이콘 스타일 */
}
.cl-checkboxgroup .cl-checkbox.cl-disabled:hover .cl-checkbox-icon,
.cl-checkboxgroup .cl-checkbox.cl-disabled.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox.png);
}
.cl-checkboxgroup .cl-checkbox.cl-disabled.cl-checked {
  /* 체크박스그룹에 disabled 체크된 체크박스 hover시 아이콘 스타일 */
}
.cl-checkboxgroup .cl-checkbox.cl-disabled.cl-checked .cl-checkbox-icon {
  background-image: url(icons/checkbox-disabled-selected.png);
}
.cl-checkboxgroup .cl-checkbox.cl-disabled.cl-checked:hover .cl-checkbox-icon,
.cl-checkboxgroup .cl-checkbox.cl-disabled.cl-checked.cl-hover .cl-checkbox-icon {
  background-image: url(icons/checkbox-disabled-selected.png);
}
.cl-checkboxgroup.cl-iconalign-right .cl-checkbox .cl-text {
  padding-left: 0px;
  padding-right: 3px;
}
.cl-checkboxgroup.cl-iconalign-top .cl-checkbox .cl-icon-wrapper {
  vertical-align: top;
  text-align: center;
}
.cl-checkboxgroup.cl-iconalign-top .cl-checkbox .cl-text {
  padding-left: 0px;
  padding-top: 3px;
}
.cl-checkboxgroup.cl-iconalign-top.cl-fixedWidth .cl-icon-wrapper {
  width: auto;
}
.cl-checkboxgroup.cl-iconalign-bottom .cl-checkbox .cl-icon-wrapper {
  vertical-align: top;
  text-align: center;
}
.cl-checkboxgroup.cl-iconalign-bottom .cl-checkbox .cl-text {
  padding-left: 0px;
  padding-bottom: 3px;
}
.cl-checkboxgroup.cl-iconalign-bottom.cl-fixedWidth .cl-icon-wrapper {
  width: auto;
}
.cl-checkboxgroup.cl-iconalign-none .cl-checkbox .cl-text {
  padding-left: 0px;
}
/* maskeditor */
.cl-maskeditor {
  border: 1px solid #bbb;
  background-color: #fff;
  text-align: left;
  color: #333;
  background-image: linear-gradient(#eee, white 3px);
}
.cl-maskeditor .cl-text {
  display: block;
  width: calc(100% - 1px);
  height: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  outline: none;
  background-color: transparent;
}
.cl-maskeditor .cl-text:disabled {
  opacity: 1;
}
.cl-maskeditor .cl-maskeditor-clear {
  width: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(icons/clear-button.png);
  background-origin: content-box;
  box-sizing: content-box;
  cursor: pointer;
}
.cl-maskeditor.cl-focus {
  border-color: #1369C5;
}
.cl-maskeditor.cl-disabled {
  border-color: #ddd;
  background-image: none;
  background-color: #ccc;
  color: #666;
}
/* combobox */
.cl-combobox {
  border: 1px solid #bbb;
  background-color: #fff;
  text-align: left;
  vertical-align: middle;
  color: #333;
}
.cl-combobox .cl-icon {
  background-position: center center;
  background-size: 16px auto;
  background-repeat: no-repeat;
  width: 20px;
}
.cl-combobox .cl-text {
  border: 0;
  outline: none;
  padding: 0px 3px;
  background-color: transparent;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  color: inherit;
  text-align: inherit;
}
.cl-combobox .cl-text:disabled {
  opacity: 1;
}
.cl-combobox .cl-text.cl-preventinput {
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.cl-combobox .cl-placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: text;
}
.cl-combobox .cl-combobox-button {
  width: 16px;
  border: 0px;
  background-image: url(icons/chevron.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-origin: content-box;
  box-sizing: content-box;
  cursor: pointer;
}
.cl-combobox.cl-focus {
  border-color: #1369C5;
}
.cl-combobox.cl-disabled {
  border-color: #ddd;
  background-color: #ccc;
  color: #666;
}
.cl-combobox.cl-disabled .cl-combobox-button {
  cursor: auto;
}
.cl-combobox-list {
  border: 1px solid #1369C5;
  margin: 0px;
  padding: 0px;
  overflow: hidden;
  border-radius: 0px;
  background-color: white;
  color: #333;
}
.cl-combobox-list.cl-popup {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
}
.cl-combobox-list .cl-viewport {
  max-height: 150px;
}
.cl-combobox-list .cl-combobox-item {
  padding: 5px 0px 5px 10px;
  min-height: 30px;
}
.cl-combobox-list .cl-combobox-item .cl-checkbox {
  width: 16px;
  height: 16px;
  background-image: url(icons/checkbox.png);
  background-repeat: no-repeat;
  background-position: center;
}
.cl-combobox-list .cl-combobox-item .cl-checkbox.cl-checked {
  background-image: url(icons/checkbox-selected.png);
}
.cl-combobox-list .cl-combobox-item .cl-icon {
  background-position: center center;
  background-size: 16px auto;
  background-repeat: no-repeat;
  width: 20px;
}
.cl-combobox-list .cl-combobox-item .cl-text {
  padding-left: 5px;
  overflow: hidden;
  white-space: nowrap;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
}
.cl-combobox-list .cl-combobox-item.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-combobox-list .cl-combobox-item.cl-disabled {
  color: #666;
}
.cl-combobox-list .cl-combobox-item.cl-disabled.cl-selected {
  color: #777;
  background-color: #ccc;
}
.cl-combobox-list .cl-combobox-item:not(.cl-disabled) {
  cursor: pointer;
}
.cl-combobox-list .cl-combobox-item:not(.cl-disabled):not(.cl-selected):hover,
.cl-combobox-list .cl-combobox-item:not(.cl-disabled):not(.cl-selected).cl-hover {
  color: #333435;
  background-color: #DAEFFC;
}
.cl-combobox-list .cl-combobox-item.cl-treeitem {
  padding: 0px 10px 0px 0px;
  /* 아이템에서 설정해야 함. CSS로 가이드는 아래와 같이 할 수 있음.*/
}
.cl-combobox-list .cl-combobox-item.cl-treeitem .cl-treeicon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  width: auto;
}
.cl-combobox-list .cl-combobox-item.cl-treeitem .cl-checkbox {
  background-image: url(icons/checkbox.png);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  padding: 0px;
}
.cl-combobox-list .cl-combobox-item.cl-treeitem .cl-checkbox.cl-checked {
  background-image: url(icons/checkbox-selected.png);
}
.cl-combobox-list .cl-combobox-item.cl-treeitem .cl-checkbox.cl-partialchecked {
  background-image: url(icons/checkbox-partial-selected.png);
}
.cl-combobox-list .cl-combobox-item.cl-treeitem .cl-text {
  padding: 3px 0px 3px 4px;
}
.cl-combobox-list .cl-combobox-item.cl-treeitem .cl-line,
.cl-combobox-list .cl-combobox-item.cl-treeitem .cl-treeicon,
.cl-combobox-list .cl-combobox-item.cl-treeitem .cl-treeicon-line {
  padding: 3px 0px 3px 0px;
}
.cl-combobox-list .cl-combobox-item.cl-treeitem.cl-expanded .cl-treeicon {
  background-image: url('icons/node-expanded-black.png');
}
.cl-combobox-list .cl-combobox-item.cl-treeitem.cl-expanded.cl-selected .cl-treeicon {
  background-image: url('icons/node-expanded-white.png');
}
.cl-combobox-list .cl-combobox-item.cl-treeitem.cl-collapsed .cl-treeicon {
  background-image: url('icons/node-collapsed-black.png');
}
.cl-combobox-list .cl-combobox-item.cl-treeitem.cl-collapsed.cl-selected .cl-treeicon {
  background-image: url('icons/node-collapsed-white.png');
}
.cl-combobox-list .cl-combobox-item.cl-treeitem .cl-line {
  background-image: url('icons/tree-line.png');
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}
.cl-combobox-list .cl-combobox-item.cl-treeitem .cl-treeicon-line {
  background-image: url('icons/tree-line-child.png');
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}
.cl-combobox-list .cl-combobox-item.cl-treeitem.cl-last .cl-treeicon-line {
  background-image: url('icons/tree-line-child-last.png');
  image-rendering: pixelated;
}
.cl-combobox-list .cl-combobox-item.cl-treeitem.cl-first .cl-treeicon-line {
  background-image: url('icons/tree-line-first.png');
  image-rendering: pixelated;
}
.cl-combobox-list .cl-combobox-item.cl-treeitem.cl-first.cl-last .cl-treeicon-line {
  background-image: url('icons/tree-line-first-last.png');
  image-rendering: pixelated;
}
.cl-combobox-list.cl-multi-select .cl-combobox-item:not(.cl-disabled).cl-selected {
  background-color: inherit;
  color: inherit;
}
.cl-combobox-list.cl-multi-select .cl-combobox-item:not(.cl-disabled).cl-selected:hover {
  color: #333435;
  background-color: #DAEFFC;
}
.cl-combobox-list.cl-multi-select .cl-combobox-item:not(.cl-disabled).cl-hover.cl-selected {
  background-color: #DAEFFC;
  color: #333435;
}
.cl-combobox-list.cl-multi-select .cl-combobox-item.cl-treeitem.cl-expanded.cl-selected .cl-treeicon {
  background-image: url('icons/node-expanded-black.png');
}
.cl-combobox-list.cl-multi-select .cl-combobox-item.cl-treeitem.cl-collapsed.cl-selected .cl-treeicon {
  background-image: url('icons/node-collapsed-black.png');
}
/*LinkdeCombobox*/
.cl-linkedcombobox .cl-linkedcombobox-combo {
  border: 1px solid #bbb;
  background-color: #fff;
  text-align: left;
  width: 150px;
}
.cl-linkedcombobox .cl-linkedcombobox-combo .cl-icon {
  background-position: center center;
  background-size: 16px auto;
  background-repeat: no-repeat;
  width: 20px;
}
.cl-linkedcombobox .cl-linkedcombobox-combo .cl-text {
  padding: 0px 3px;
  border: 0;
  outline: none;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  background-color: transparent;
}
.cl-linkedcombobox .cl-linkedcombobox-combo .cl-text:disabled {
  opacity: 1;
}
.cl-linkedcombobox .cl-linkedcombobox-combo .cl-text.cl-preventinput {
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.cl-linkedcombobox .cl-linkedcombobox-combo .cl-placeholder {
  text-overflow: ellipsis;
  white-space: nowrap;
  cursor: text;
}
.cl-linkedcombobox .cl-linkedcombobox-combo .cl-linkedcombobox-button {
  width: 16px;
  border: 0px;
  cursor: pointer;
  background-image: url(icons/chevron.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center;
}
.cl-linkedcombobox .cl-linkedcombobox-combo.cl-focus {
  border-color: #1369C5;
}
.cl-linkedcombobox.cl-disabled {
  color: #666;
}
.cl-linkedcombobox.cl-disabled .cl-linkedcombobox-combo {
  border-color: #ddd;
  background-color: #ccc;
}
.cl-linkedcombobox.cl-disabled .cl-linkedcombobox-button {
  cursor: auto;
}
.cl-linkedcombobox-list {
  color: #333;
  font-family: sans-serif;
  border: 1px solid #1369C5;
  padding: 0px;
  overflow: hidden;
  background-color: white;
}
.cl-linkedcombobox-list.cl-popup {
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.3);
}
.cl-linkedcombobox-list .cl-viewport {
  max-height: 150px;
}
.cl-linkedcombobox-list .cl-viewport.cl-customscrollbar {
  -ms-overflow-style: none;
}
.cl-linkedcombobox-list .cl-viewport.cl-customscrollbar::-webkit-scrollbar {
  display: none;
}
.cl-linkedcombobox-list ul {
  padding: 0px;
  margin: 0px;
}
.cl-linkedcombobox-list .cl-linkedcombobox-item {
  padding: 5px 10px;
}
.cl-linkedcombobox-list .cl-linkedcombobox-item .cl-icon {
  background-position: center center;
  background-size: 16px auto;
  background-repeat: no-repeat;
  width: 20px;
}
.cl-linkedcombobox-list .cl-linkedcombobox-item .cl-text {
  white-space: nowrap;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
}
.cl-linkedcombobox-list .cl-linkedcombobox-item .cl-linkedcombobox-arrow {
  width: 16px;
}
.cl-linkedcombobox-list .cl-linkedcombobox-item .cl-linkedcombobox-arrow.cl-folder {
  background-image: url(icons/drill-down.png);
  background-repeat: no-repeat;
  background-size: 16px auto;
  background-position: center;
}
.cl-linkedcombobox-list .cl-linkedcombobox-item.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-linkedcombobox-list .cl-linkedcombobox-item.cl-selected .cl-linkedcombobox-arrow.cl-folder {
  background-image: url(icons/drill-down-selected.png);
}
.cl-linkedcombobox-list .cl-linkedcombobox-item.cl-disabled {
  color: #666;
}
.cl-linkedcombobox-list .cl-linkedcombobox-item.cl-disabled.cl-selected {
  color: #777;
  background-color: #ccc;
}
.cl-linkedcombobox-list .cl-linkedcombobox-item:not(.cl-disabled) {
  cursor: pointer;
}
.cl-linkedcombobox-list .cl-linkedcombobox-item:not(.cl-disabled):not(.cl-selected):hover,
.cl-linkedcombobox-list .cl-linkedcombobox-item:not(.cl-disabled):not(.cl-selected).cl-hover {
  color: #333435;
  background-color: #DAEFFC;
}
.cl-dialog {
  min-height: 50px;
  min-width: 50px;
  border: solid 1px #1369C5;
  background-color: white;
  overflow: hidden;
}
.cl-dialog .cl-dialog-body-wrapper {
  position: relative;
}
.cl-dialog .cl-dialog-body-wrapper .cl-dialog-body {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.cl-dialog .cl-dialog-header {
  background-color: #1D7FDC;
  color: white;
  border-bottom: 1px solid #e5e5e5;
  vertical-align: middle;
  padding: 10px;
}
.cl-dialog .cl-dialog-header .cl-text {
  vertical-align: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  color: inherit;
  text-decoration: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cl-dialog .cl-dialog-header .cl-dialog-close {
  background-image: url(icons/dialog-close.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  width: 20px;
  cursor: pointer;
}
.cl-dialog .cl-dialog-header .cl-dialog-close:active {
  background-image: url(icons/dialog-close-active.png);
}
.cl-dialog .cl-dialog-header .cl-dialog-min {
  background-image: url(icons/dialog-min.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  width: 20px;
  cursor: pointer;
}
.cl-dialog .cl-dialog-header .cl-dialog-min:active {
  background-image: url(icons/dialog-min-active.png);
}
.cl-dialog .cl-dialog-header .cl-dialog-max {
  background-image: url(icons/dialog-max.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  width: 20px;
  cursor: pointer;
}
.cl-dialog .cl-dialog-header .cl-dialog-max:active {
  background-image: url(icons/dialog-max-active.png);
}
.cl-dialog .cl-dialog-header .cl-dialog-restore {
  background-image: url(icons/dialog-restore.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  width: 20px;
  cursor: pointer;
}
.cl-dialog .cl-dialog-header .cl-dialog-restore:active {
  background-image: url(icons/dialog-restore-active.png);
}
/* Tree control*/
.cl-tree {
  border: 1px solid #bbb;
  color: #333;
  background-color: #fff;
  overflow: hidden;
  text-align: left;
}
.cl-tree .cl-customscrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cl-tree .cl-customscrollbar::-webkit-scrollbar {
  display: none;
}
.cl-tree .cl-tree-item {
  outline: none;
  padding: 3px 10px 3px 0px;
}
.cl-tree .cl-tree-item .cl-tree-treeicon {
  width: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px auto;
}
.cl-tree .cl-tree-item .cl-checkbox {
  background-image: url(icons/checkbox.png);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  padding: 0px;
}
.cl-tree .cl-tree-item .cl-checkbox.cl-checked {
  background-image: url(icons/checkbox-selected.png);
}
.cl-tree .cl-tree-item .cl-checkbox.cl-partialchecked {
  background-image: url(icons/checkbox-partial-selected.png);
}
.cl-tree .cl-tree-item .cl-tree-checkbox {
  background-image: url(icons/checkbox.png);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
}
.cl-tree .cl-tree-item .cl-tree-itemicon {
  width: 20px;
  background-image: url(icons/tree-file.png);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
}
.cl-tree .cl-tree-item .cl-text {
  padding-left: 4px;
  white-space: nowrap;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  width: 100%;
  padding-right: 4px;
}
.cl-tree .cl-tree-item .cl-texteditor {
  width: 100%;
}
.cl-tree .cl-tree-item .cl-badge {
  white-space: nowrap;
  text-align: right;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}
.cl-tree .cl-tree-item.cl-checked > .cl-tree-checkbox {
  background-image: url(icons/checkbox-selected.png);
}
.cl-tree .cl-tree-item.cl-partialchecked > .cl-tree-checkbox {
  background-image: url(icons/checkbox-partial-selected.png);
}
.cl-tree .cl-tree-item.cl-folder .cl-tree-itemicon {
  background-image: url(icons/tree-folder.png);
}
.cl-tree .cl-tree-item.cl-folder.cl-expanded > .cl-tree-treeicon {
  background-image: url(icons/expanded.png);
}
.cl-tree .cl-tree-item.cl-folder.cl-collapsed > .cl-tree-treeicon {
  background-image: url(icons/collapsed.png);
}
.cl-tree .cl-tree-item.cl-disabled {
  color: #666;
}
.cl-tree .cl-tree-item.cl-disabled.cl-selected {
  color: #777;
  background-color: #ccc;
}
.cl-tree .cl-tree-item.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-tree .cl-tree-item.cl-selected.cl-folder.cl-expanded > .cl-tree-treeicon {
  background-image: url(icons/expanded-selected.png);
}
.cl-tree .cl-tree-item.cl-selected.cl-folder.cl-collapsed > .cl-tree-treeicon {
  background-image: url(icons/collapsed-selected.png);
}
.cl-tree.cl-focus {
  border-color: #1369C5;
}
.cl-tree.cl-tree-lines .cl-tree-item {
  padding: 0px 10px 0px 0px;
}
.cl-tree.cl-tree-lines .cl-tree-item .cl-tree-treeicon {
  background-size: auto;
  width: auto;
}
.cl-tree.cl-tree-lines .cl-tree-item.cl-expanded > .cl-tree-treeicon {
  background-image: url('icons/node-expanded-black.png');
}
.cl-tree.cl-tree-lines .cl-tree-item.cl-expanded.cl-selected > .cl-tree-treeicon {
  background-image: url('icons/node-expanded-white.png');
}
.cl-tree.cl-tree-lines .cl-tree-item.cl-collapsed > .cl-tree-treeicon {
  background-image: url('icons/node-collapsed-black.png');
}
.cl-tree.cl-tree-lines .cl-tree-item.cl-collapsed.cl-selected > .cl-tree-treeicon {
  background-image: url('icons/node-collapsed-white.png');
}
.cl-tree.cl-tree-lines .cl-tree-item .cl-tree-line {
  background-image: url('icons/tree-line.png');
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}
.cl-tree.cl-tree-lines .cl-tree-item .cl-tree-iconline {
  background-image: url('icons/tree-line-child.png');
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}
.cl-tree.cl-tree-lines .cl-tree-item.cl-last .cl-tree-iconline {
  background-image: url('icons/tree-line-child-last.png');
  image-rendering: pixelated;
}
.cl-tree.cl-tree-lines .cl-tree-item.cl-first .cl-tree-iconline {
  background-image: url('icons/tree-line-first.png');
  image-rendering: pixelated;
}
.cl-tree.cl-tree-lines .cl-tree-item.cl-first.cl-last .cl-tree-iconline {
  background-image: url('icons/tree-line-first-last.png');
  image-rendering: pixelated;
}
.cl-tree.cl-tree-lines .cl-tree-item .cl-text {
  padding: 3px 0px 3px 4px;
}
.cl-tree.cl-tree-lines .cl-tree-item .cl-tree-line,
.cl-tree.cl-tree-lines .cl-tree-item .cl-tree-treeicon,
.cl-tree.cl-tree-lines .cl-tree-item .cl-tree-iconline {
  padding: 3px 0px 3px 0px;
}
.cl-tree:not(.cl-disabled) .cl-tree-item:not(.cl-disabled) {
  cursor: pointer;
}
.cl-tree:not(.cl-disabled) .cl-tree-item:not(.cl-disabled):not(.cl-selected).cl-hover,
.cl-tree:not(.cl-disabled) .cl-tree-item:not(.cl-disabled):not(.cl-selected):hover {
  background-color: #DAEFFC;
  color: #333435;
}
.cl-tree:not(.cl-disabled) .cl-tree-item:not(.cl-disabled).cl-dropbottom {
  box-shadow: inset 0 -2px 0 #bbb;
}
.cl-tree:not(.cl-disabled) .cl-tree-item:not(.cl-disabled).cl-dropmiddle,
.cl-tree:not(.cl-disabled) .cl-tree-item:not(.cl-disabled):not(.cl-selected).cl-dropmiddle {
  background-color: #bbb;
}
.cl-tree:not(.cl-disabled) .cl-tree-item:not(.cl-disabled).cl-droptop {
  box-shadow: inset 0 2px 0 #bbb;
}
.cl-tree.cl-disabled {
  color: #666;
  border-color: #ddd;
}
.cl-tree.cl-disabled .cl-tree-item.cl-selected {
  background-color: #ccc;
  color: #777;
}
/*NavigationBar*/
.cl-navigationbar {
  overflow: hidden;
  background-color: #fff;
  border: solid 1px #bbb;
  color: #333;
}
.cl-navigationbar .cl-navigationbar-prev {
  background-color: #eee;
  background-image: url("icons/prev.png");
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  top: 0px;
  width: 20px;
}
.cl-navigationbar .cl-navigationbar-prev.cl-position-both {
  border-left: none;
  border-right: solid 1px #bbb;
}
.cl-navigationbar .cl-navigationbar-prev.cl-position-left {
  border-left: none;
  border-right: solid 1px #bbb;
}
.cl-navigationbar .cl-navigationbar-prev.cl-position-right {
  border-left: solid 1px #bbb;
  border-right: none;
}
.cl-navigationbar .cl-navigationbar-prev.cl-disabled {
  background-image: url("icons/prev-selected.png");
}
.cl-navigationbar .cl-navigationbar-next {
  background-color: #eee;
  background-image: url("icons/next.png");
  background-position: center center;
  background-repeat: no-repeat;
  cursor: pointer;
  top: 0px;
  width: 20px;
}
.cl-navigationbar .cl-navigationbar-next.cl-position-both {
  border-left: solid 1px #bbb;
  border-right: none;
}
.cl-navigationbar .cl-navigationbar-next.cl-position-left {
  border-left: none;
  border-right: solid 1px #bbb;
}
.cl-navigationbar .cl-navigationbar-next.cl-position-right {
  border-left: solid 1px #bbb;
  border-right: none;
}
.cl-navigationbar .cl-navigationbar-next.cl-disabled {
  background-image: url("icons/next-selected.png");
}
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item {
  padding: 5px 10px;
}
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item .cl-navigationbar-icon {
  width: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px auto;
}
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item .cl-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
}
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item .cl-navigationbar-accesskey {
  width: 25px;
  text-decoration: underline;
  text-transform: uppercase;
  text-decoration-skip-ink: none;
  text-decoration-skip: none;
}
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item .cl-navigationbar-arrow {
  width: 16px;
  background-image: url(icons/expand.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px auto;
}
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item:not(.cl-disabled):not(.cl-selected):hover,
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item:not(.cl-disabled).cl-hover {
  background-color: #DAEFFC;
  color: #333435;
}
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item.cl-disabled {
  color: #666;
}
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item.cl-disabled.cl-selected {
  color: #777;
  background-color: #ccc;
}
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-navigationbar .cl-navigationbar-bar .cl-navigationbar-item.cl-selected .cl-navigationbar-arrow {
  background-image: url(icons/expanded-selected.png);
}
.cl-navigationbar.cl-focus {
  border-color: #1369C5;
}
.cl-navigationbar-list {
  background-color: #fff;
  border: solid 1px #bbb;
}
.cl-navigationbar-list .cl-navigationbar-category {
  padding: 10px;
  float: left;
  width: 200px;
}
.cl-navigationbar-list .cl-navigationbar-category .sub-items {
  padding: 0px;
}
.cl-navigationbar-list .cl-navigationbar-category .sub-items .cl-navigationbar-listitem {
  width: 100%;
}
.cl-navigationbar-list .cl-arrow-up {
  background-image: url(icons/up-spin.png);
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.cl-navigationbar-list .cl-arrow-up:hover {
  background-image: url(icons/up-spin-hover.png);
  background-color: #1F8BF0;
}
.cl-navigationbar-list .cl-arrow-up.cl-disabled {
  background-color: #ccc;
}
.cl-navigationbar-list .cl-arrow-down {
  background-image: url(icons/down-spin.png);
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.cl-navigationbar-list .cl-arrow-down:hover {
  background-image: url(icons/down-spin-hover.png);
  background-color: #1F8BF0;
}
.cl-navigationbar-list .cl-arrow-down.cl-disabled {
  background-color: #ccc;
}
.cl-navigationbar-list .cl-navigationbar-listitem {
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  color: #333;
  padding: 5px 10px;
  cursor: pointer;
}
.cl-navigationbar-list .cl-navigationbar-listitem .cl-navigationbar-icon-wrapper {
  width: 16px;
}
.cl-navigationbar-list .cl-navigationbar-listitem .cl-navigationbar-icon-wrapper .cl-navigationbar-icon {
  width: 16px;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px auto;
}
.cl-navigationbar-list .cl-navigationbar-listitem .cl-navigationbar-arrow-wrapper {
  width: 16px;
}
.cl-navigationbar-list .cl-navigationbar-listitem .cl-navigationbar-arrow-wrapper .cl-navigationbar-arrow {
  width: 16px;
  height: 16px;
  text-overflow: initial;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px auto;
}
.cl-navigationbar-list .cl-navigationbar-listitem.cl-folder > .cl-navigationbar-arrow-wrapper .cl-navigationbar-arrow {
  background-image: url(icons/drill-down.png);
}
.cl-navigationbar-list .cl-navigationbar-listitem .cl-text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
}
.cl-navigationbar-list .cl-navigationbar-listitem .cl-navigationbar-accesskey-wrapper {
  width: 25px;
}
.cl-navigationbar-list .cl-navigationbar-listitem .cl-navigationbar-accesskey-wrapper .cl-navigationbar-accesskey {
  width: 25px;
  text-decoration: underline;
  text-transform: uppercase;
  text-align: right;
  text-overflow: initial;
  text-decoration-skip-ink: none;
  text-decoration-skip: none;
}
.cl-navigationbar-list .cl-navigationbar-listitem:not(.cl-disabled):not(.cl-selected):hover,
.cl-navigationbar-list .cl-navigationbar-listitem:not(.cl-disabled).cl-hover {
  background-color: #DAEFFC;
  color: #333435;
}
.cl-navigationbar-list .cl-navigationbar-listitem.cl-disabled {
  color: #666;
}
.cl-navigationbar-list .cl-navigationbar-listitem.cl-disabled.cl-selected {
  color: #777;
  background-color: #ccc;
}
.cl-navigationbar-list .cl-navigationbar-listitem.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-navigationbar-list .cl-navigationbar-listitem.cl-selected.cl-folder > .cl-navigationbar-arrow-wrapper .cl-navigationbar-arrow {
  background-image: url(icons/drill-down-selected.png);
}
.cl-navigationbar:not(.cl-disabled) .cl-navigationbar-item:not(.cl-disabled) {
  cursor: pointer;
}
.cl-navigationbar-bar[data-menutype='fullmenu'] {
  width: 100%;
  table-layout: fixed;
}
.cl-navigationbar-bar[data-menutype='fullmenu'] .cl-navigationbar-item .cl-navigationbar-content {
  width: 100%;
}
.cl-navigationbar-bar[data-menutype='fullmenu'] .cl-navigationbar-item .cl-navigationbar-text {
  text-align: center;
}
.cl-navigationbar-megamenu .cl-navigationbar-listitem,
.cl-navigationbar-fullmenu .cl-navigationbar-listitem {
  background-color: #E6EDF0;
  font-weight: bold;
}
.cl-navigationbar-megamenu .cl-level-2 .cl-navigationbar-listitem,
.cl-navigationbar-fullmenu .cl-level-2 .cl-navigationbar-listitem {
  font-weight: normal;
  background: none;
}
.cl-navigationbar-megamenu .cl-level-3 .cl-navigationbar-listitem,
.cl-navigationbar-fullmenu .cl-level-3 .cl-navigationbar-listitem {
  padding-left: 20px;
}
.cl-navigationbar-megamenu .cl-level-4 .cl-navigationbar-listitem,
.cl-navigationbar-fullmenu .cl-level-4 .cl-navigationbar-listitem {
  padding-left: 40px;
}
.cl-navigationbar-megamenu .cl-level-5 .cl-navigationbar-listitem,
.cl-navigationbar-fullmenu .cl-level-5 .cl-navigationbar-listitem {
  padding-left: 60px;
}
.cl-navigationbar-fullmenu .cl-navigationbar-group .cl-navigationbar-category {
  float: none;
  width: auto;
}
/* 탭 폴더 */
/*.cl-tabfolder {}*/
.cl-tabfolder {
  color: #333;
}
.cl-tabfolder .cl-tabfolder-header {
  overflow: hidden;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-prev {
  background-color: #eee;
  background-image: url("icons/prev.png");
  background-position: center center;
  background-repeat: no-repeat;
  border: solid 1px #bbb;
  border-right: none;
  cursor: pointer;
  top: 0px;
  width: 20px;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-prev.cl-disabled {
  background-image: url("icons/prev-selected.png");
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-next {
  background-color: #eee;
  background-image: url("icons/next.png");
  background-position: center center;
  background-repeat: no-repeat;
  border: solid 1px #bbb;
  cursor: pointer;
  top: 0px;
  width: 20px;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-next.cl-disabled {
  background-image: url("icons/next-selected.png");
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-header-viewport {
  white-space: nowrap;
  border-collapse: collapse;
}
.cl-tabfolder .cl-tabfolder-header .cl-insertion-feedback {
  background-color: #ff3b30;
  opacity: 0.8;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-item {
  background-color: white;
  padding: 5px 10px;
  border: solid 1px #bbb;
  white-space: pre;
  vertical-align: middle;
  cursor: pointer;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-item.cl-dragging {
  opacity: 0.5;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-item .cl-checkbox {
  padding: 0px;
  margin-right: 4px;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-item .cl-tabfolder-button {
  margin-left: 3px;
  width: 16px;
  height: 16px;
  background-image: url(icons/close.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-item.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
  border-color: #1369C5;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-item.cl-selected .cl-tabfolder-button {
  background-image: url(icons/close-selected.png);
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-item:not(.cl-selected):hover {
  background-color: #DAEFFC;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-item .cl-text:focus {
  text-decoration: underline;
  outline: none;
}
.cl-tabfolder .cl-tabfolder-header .cl-tabfolder-item.cl-disabled {
  background: #eee;
  color: #999;
  text-shadow: 0px 1px 0px white;
}
.cl-tabfolder .cl-tabfolder-header.cl-top .cl-tabfolder-item,
.cl-tabfolder .cl-tabfolder-header.cl-top .cl-tabfolder-prev,
.cl-tabfolder .cl-tabfolder-header.cl-top .cl-tabfolder-next {
  border-bottom: none;
}
.cl-tabfolder .cl-tabfolder-header.cl-bottom .cl-tabfolder-item,
.cl-tabfolder .cl-tabfolder-header.cl-bottom .cl-tabfolder-prev,
.cl-tabfolder .cl-tabfolder-header.cl-bottom .cl-tabfolder-next {
  border-top: none;
}
.cl-tabfolder .cl-tabfolder-body {
  background-color: white;
  color: #333;
  border: solid 1px #bbb;
}
.cl-tabfolder.cl-disabled {
  opacity: .7;
}
.cl-tabfolder.cl-disabled .cl-tabfolder-header .cl-tabfolder-item {
  cursor: auto;
}
.cl-tabfolder.cl-disabled .cl-tabfolder-header .cl-tabfolder-item:not(.cl-selected):hover {
  background-color: inherit;
}
/**
 * PageIndexer
 */
/* div (PageIndexer Root Class) */
.cl-pageindexer {
  padding: 5px;
  color: #333;
  vertical-align: middle;
  text-align: center;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}
.cl-pageindexer .cl-pageindexer-index-area,
.cl-pageindexer .cl-pageindexer-first,
.cl-pageindexer .cl-pageindexer-last,
.cl-pageindexer .cl-pageindexer-prev,
.cl-pageindexer .cl-pageindexer-next,
.cl-pageindexer .cl-pageindexer-index,
.cl-pageindexer .cl-text-wrapper {
  min-height: 30px;
}
.cl-pageindexer .cl-pageindexer-index-area {
  height: auto;
  vertical-align: middle;
  text-align: center;
}
.cl-pageindexer .cl-pageindexer-first,
.cl-pageindexer .cl-pageindexer-last,
.cl-pageindexer .cl-pageindexer-prev,
.cl-pageindexer .cl-pageindexer-next,
.cl-pageindexer .cl-pageindexer-index {
  box-sizing: border-box;
  display: inline-block;
  border: 1px solid #bbb;
  background-color: white;
  vertical-align: middle;
  text-align: center;
  width: 30px;
  height: auto;
  margin: 0 2px;
  background-position: center center;
  background-repeat: no-repeat;
}
.cl-pageindexer .cl-pageindexer-first:focus,
.cl-pageindexer .cl-pageindexer-last:focus,
.cl-pageindexer .cl-pageindexer-prev:focus,
.cl-pageindexer .cl-pageindexer-next:focus,
.cl-pageindexer .cl-pageindexer-index:focus {
  outline: 1px solid #4d90fe;
}
.cl-pageindexer .cl-pageindexer-first {
  background-image: url("icons/first.png");
}
.cl-pageindexer .cl-pageindexer-prev {
  background-image: url("icons/prev.png");
}
.cl-pageindexer .cl-pageindexer-next {
  background-image: url("icons/next.png");
}
.cl-pageindexer .cl-pageindexer-last {
  background-image: url("icons/last.png");
}
.cl-pageindexer .cl-pageindexer-index.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
  border-color: #1369C5;
}
.cl-pageindexer.cl-disabled {
  color: #666;
}
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-first,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-last,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-prev,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-next,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-index {
  cursor: pointer;
}
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-first:not(.cl-selected).cl-hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-last:not(.cl-selected).cl-hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-prev:not(.cl-selected).cl-hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-next:not(.cl-selected).cl-hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-index:not(.cl-selected).cl-hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-first:not(.cl-selected):hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-last:not(.cl-selected):hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-prev:not(.cl-selected):hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-next:not(.cl-selected):hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-index:not(.cl-selected):hover {
  background-color: #DAEFFC;
}
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-first.cl-disabled,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-last.cl-disabled,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-prev.cl-disabled,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-next.cl-disabled,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-index.cl-disabled {
  cursor: default;
}
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-first.cl-disabled.cl-hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-last.cl-disabled.cl-hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-prev.cl-disabled.cl-hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-next.cl-disabled.cl-hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-index.cl-disabled.cl-hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-first.cl-disabled:hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-last.cl-disabled:hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-prev.cl-disabled:hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-next.cl-disabled:hover,
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-index.cl-disabled:hover {
  background-color: #ccc;
}
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-first:active {
  background-image: url("icons/first-selected.png");
}
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-prev:active {
  background-image: url("icons/prev-selected.png");
}
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-next:active {
  background-image: url("icons/next-selected.png");
}
.cl-pageindexer:not(.cl-disabled) .cl-pageindexer-last:active {
  background-image: url("icons/last-selected.png");
}
.cl-pageindexer.cl-disabled .cl-pageindexer-first,
.cl-pageindexer.cl-disabled .cl-pageindexer-last,
.cl-pageindexer.cl-disabled .cl-pageindexer-prev,
.cl-pageindexer.cl-disabled .cl-pageindexer-next,
.cl-pageindexer.cl-disabled .cl-pageindexer-index {
  background-color: #e7e7e7;
  text-shadow: 0px 1px 0px white;
}
.cl-pageindexer.cl-disabled .cl-pageindexer-first:focus,
.cl-pageindexer.cl-disabled .cl-pageindexer-last:focus,
.cl-pageindexer.cl-disabled .cl-pageindexer-prev:focus,
.cl-pageindexer.cl-disabled .cl-pageindexer-next:focus,
.cl-pageindexer.cl-disabled .cl-pageindexer-index:focus {
  outline: none;
}
.cl-pageindexer.cl-disabled .cl-pageindexer-index.cl-selected {
  background-color: #ccc;
  color: #777;
  border-color: #888;
  text-shadow: none;
}
/**
 * Notifier
 */
/* div (Notifier Root Class) */
.cl-notifier-item {
  padding: 3px;
  margin-bottom: 2px;
  border-style: solid;
  border-width: 1px;
  width: calc(100% - 8px);
  vertical-align: middle;
}
.cl-notifier-item .cl-text {
  margin: 2px 2px 2px 5px;
  vertical-align: inherit;
  overflow: hidden;
}
.cl-notifier-item .cl-notifier-icon {
  background-size: 16px auto;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: center center;
  vertical-align: inherit;
}
.cl-notifier-item .cl-notifier-closebutton {
  background-image: url("icons/notifier-close.png");
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 16px;
  height: 16px;
}
.cl-notifier-item.cl-animation {
  -webkit-animation-duration: 1s;
  /* Safari 4.0 - 8.0 */
  animation-duration: 1s;
}
.cl-notifier-item.cl-notifier-default {
  color: #000;
  background-color: #EEE;
  border-color: #AAA;
}
.cl-notifier-item.cl-notifier-default .cl-notifier-default-icon {
  background-image: url("icons/notifier-default.png");
}
.cl-notifier-item.cl-notifier-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.cl-notifier-item.cl-notifier-success .cl-notifier-success-icon {
  background-image: url("icons/notifier-success.png");
}
.cl-notifier-item.cl-notifier-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.cl-notifier-item.cl-notifier-info .cl-notifier-info-icon {
  background-image: url("icons/notifier-info.png");
}
.cl-notifier-item.cl-notifier-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.cl-notifier-item.cl-notifier-warning .cl-notifier-warning-icon {
  background-image: url("icons/notifier-warning.png");
}
.cl-notifier-item.cl-notifier-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.cl-notifier-item.cl-notifier-danger .cl-notifier-danger-icon {
  background-image: url("icons/notifier-danger.png");
}
.cl-notifier-item:not(.cl-disabled) .cl-notifier-closebutton,
.cl-notifier-item:not(.cl-disabled) .cl-notifier-closebutton * {
  cursor: pointer;
}
/**
 * Progress
 */
.cl-progress {
  background-image: linear-gradient(#aaa, #E6E7E9 4px);
  border: 1px solid #bbb;
  border-radius: 3px;
  padding: 0px;
  min-width: 50px;
  text-align: center;
  text-shadow: 0px 1px 0px white;
}
.cl-progress .cl-progress-bar {
  border-radius: 2px;
  background-image: linear-gradient(#99D1F1, #1C6DA0, #3397D4);
  min-height: 3px;
}
.cl-progress .cl-text {
  border: 0px;
  outline: none;
  padding: 0px 3px;
  background-color: transparent;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  color: inherit;
  text-align: inherit;
  text-shadow: inherit;
}
.cl-progress.cl-disabled {
  border-color: #ddd;
  background-image: linear-gradient(#ccc, #eee 4px);
}
.cl-progress.cl-disabled .cl-progress-bar {
  background-image: linear-gradient(#eee, #aaa, #ddd);
}
.cl-image-area-item {
  outline: none;
  stroke: #1F8BF0;
  stroke-width: 4;
  stroke-opacity: 0;
  fill-opacity: 0;
  cursor: pointer;
}
.cl-image-area-item:focus {
  stroke-opacity: 0.6;
}
.cl-image-area-item:hover {
  stroke-opacity: 0.8;
}
.cl-image-area-item.cl-selected,
.cl-image-area-item:active {
  stroke-opacity: 1;
}
/*video*/
.cl-video {
  border: 1px solid #bbb;
}
.cl-video.cl-focus {
  border: solid 1px #1369C5;
}
.cl-video .cl-media {
  outline: none;
}
.cl-video.cl-disabled .cl-overlay {
  background-color: rgba(119, 119, 119, 0.5);
  opacity: .5;
}
/*audio*/
.cl-audio {
  border: 1px solid #bbb;
}
.cl-audio.cl-focus {
  border: solid 1px #1369C5;
}
.cl-audio .cl-media {
  outline: none;
}
.cl-audio.cl-disabled .cl-overlay {
  background-color: rgba(119, 119, 119, 0.5);
  opacity: .5;
}
.cl-fileinput {
  border: solid 1px #bbb;
  background-color: #fff;
  overflow: hidden;
  text-align: center;
  min-width: 50px;
  min-height: 20px;
}
.cl-fileinput .cl-text {
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
  width: 100%;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  vertical-align: inherit;
  text-align: inherit;
  text-decoration: inherit;
  outline: none;
}
.cl-fileinput .cl-fileinput-clear {
  width: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(icons/clear-button.png);
  background-origin: content-box;
  box-sizing: content-box;
  cursor: pointer;
}
.cl-fileinput.cl-focus {
  border-color: #1369C5;
}
.cl-fileinput.cl-disabled {
  border-color: #ddd;
  background-image: none;
  background-color: #ccc;
  color: #333;
}
.cl-fileinput.cl-disabled .cl-fileinput-clear {
  background-image: url(icons/clear-button-disabled.png);
  cursor: default;
}
.cl-fileinput:not(.cl-disabled) .cl-fileinput-clear:hover {
  background-image: url(icons/clear-button-hover.png);
}
.cl-fileinput:not(.cl-disabled) .cl-fileinput-clear:active {
  background-image: url(icons/clear-button-hover.png);
  opacity: 70%;
}
/*IE input에서 입력시 X표시를 숨김*/
input::-ms-clear {
  display: none;
  height: 0px;
  width: 0px;
}
.cl-formlayout-row-shade,
.cl-formlayout-column-shade {
  background-color: #eeeeee;
}
.cl-formlayout-vertical-separator,
.cl-formlayout-horizontal-separator {
  background-color: #cccccc;
}
.cl-form-group {
  border: solid 1px #cccccc;
}
.cl-formlayout-vertical-lightweight-resizer,
.cl-formlayout-horizontal-lightweight-resizer {
  background-color: #ff3b30;
  opacity: 0.8;
}
/* Tree control*/
.cl-treecell {
  background-color: #fff;
  text-align: left;
  vertical-align: middle;
  color: #333;
  background-image: linear-gradient(#eee, white 3px);
}
.cl-treecell .cl-treecell-item {
  vertical-align: inherit;
}
.cl-treecell .cl-treecell-item .cl-treecell-treeicon {
  width: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.cl-treecell .cl-treecell-item .cl-checkbox {
  background-image: url(icons/checkbox.png);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 20px;
  padding: 0px;
}
.cl-treecell .cl-treecell-item .cl-checkbox.cl-checked {
  background-image: url(icons/checkbox-selected.png);
}
.cl-treecell .cl-treecell-item .cl-checkbox.cl-partialchecked {
  background-image: url(icons/checkbox-partial-selected.png);
}
.cl-treecell .cl-treecell-item .cl-treecell-itemicon {
  width: 20px;
  background-image: url(icons/tree-file.png);
  background-size: 16px auto;
  background-position: center;
  background-repeat: no-repeat;
}
.cl-treecell .cl-treecell-item .cl-text {
  padding-left: 4px;
  white-space: nowrap;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
}
.cl-treecell .cl-treecell-item .cl-text input {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background-color: transparent;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  text-decoration: inherit;
  outline: none;
}
.cl-treecell .cl-treecell-item.cl-folder .cl-treecell-itemicon {
  background-image: url(icons/tree-folder.png);
}
.cl-treecell .cl-treecell-item.cl-folder.cl-expanded > .cl-treecell-treeicon {
  background-image: url(icons/expanded.png);
}
.cl-treecell .cl-treecell-item.cl-folder.cl-collapsed > .cl-treecell-treeicon {
  background-image: url(icons/collapsed.png);
}
.cl-treecell .cl-treecell-item.cl-disabled {
  color: #666;
}
.cl-treecell.cl-focus {
  border-color: #1369C5;
}
.cl-treecell.cl-disabled {
  border-color: #ddd;
  background-image: none;
  background-color: #ccc;
  color: #333;
}
.cl-treecell.cl-treecell-lines .cl-treecell-item .cl-treecell-treeicon {
  background-size: auto;
  width: auto;
}
.cl-treecell.cl-treecell-lines .cl-treecell-item.cl-expanded > .cl-treecell-treeicon {
  background-image: url('icons/node-expanded-black.png');
}
.cl-treecell.cl-treecell-lines .cl-treecell-item.cl-expanded.cl-selected > .cl-treecell-treeicon {
  background-image: url('icons/node-expanded-white.png');
}
.cl-treecell.cl-treecell-lines .cl-treecell-item.cl-collapsed > .cl-treecell-treeicon {
  background-image: url('icons/node-collapsed-black.png');
}
.cl-treecell.cl-treecell-lines .cl-treecell-item.cl-collapsed.cl-selected > .cl-treecell-treeicon {
  background-image: url('icons/node-collapsed-white.png');
}
.cl-treecell.cl-treecell-lines .cl-treecell-item .cl-treecell-line {
  background-image: url('icons/tree-line.png');
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}
.cl-treecell.cl-treecell-lines .cl-treecell-item .cl-treecell-iconline {
  background-image: url('icons/tree-line-child.png');
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}
.cl-treecell.cl-treecell-lines .cl-treecell-item.cl-last .cl-treecell-iconline {
  background-image: url('icons/tree-line-child-last.png');
  image-rendering: pixelated;
}
.cl-treecell.cl-treecell-lines .cl-treecell-item.cl-first .cl-treecell-iconline {
  background-image: url('icons/tree-line-first.png');
  image-rendering: pixelated;
}
.cl-treecell.cl-treecell-lines .cl-treecell-item.cl-first.cl-last .cl-treecell-iconline {
  background-image: url('icons/tree-line-first-last.png');
  image-rendering: pixelated;
}
.cl-treecell.cl-treecell-lines .cl-treecell-item.cl-line .cl-treecell-iconline {
  background-image: url('icons/tree-line.png');
  image-rendering: pixelated;
}
.cl-treecell.cl-treecell-lines .cl-treecell-item .cl-text {
  padding: 3px 0px 3px 4px;
}
.cl-treecell.cl-treecell-lines .cl-treecell-item .cl-treecell-line,
.cl-treecell.cl-treecell-lines .cl-treecell-item .cl-treecell-treeicon,
.cl-treecell.cl-treecell-lines .cl-treecell-item .cl-treecell-iconline {
  padding: 3px 0px 3px 0px;
}
.cl-treecell:not(.cl-disabled) .cl-treecell-item:not(.cl-disabled) {
  cursor: pointer;
}
.cl-treecell.cl-disabled {
  color: #666;
  border-color: #ddd;
}
.cl-treecell.cl-disabled .cl-treecell-item.cl-selected {
  background-color: #ccc;
  color: #777;
}
.cl-statecell {
  color: #333;
  text-align: left;
  vertical-align: middle;
  overflow: hidden;
}
.cl-statecell .cl-unchanged {
  /* unchanged row image */
  background-image: url(icons/expand.png);
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: center;
}
.cl-statecell .cl-updated {
  /* updated row image */
  background-image: url(icons/close.png);
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: center;
}
.cl-statecell .cl-inserted {
  /* inserted row image */
  background-image: url(icons/first.png);
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: center;
}
.cl-statecell .cl-deleted {
  /* deleted row image */
  background-image: url(icons/next.png);
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: center;
}
.cl-statecell .cl-insertdeleted {
  /* insertdeleted row image */
  background-image: url(icons/prev.png);
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  background-position: center;
}
.cl-statecell .cl-text {
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-align: inherit;
  width: 100%;
  height: 100%;
}
.cl-htmlsnippet {
  white-space: normal;
  text-align: left;
  vertical-align: baseline;
}
.cl-customscrollbar {
  position: relative;
  box-sizing: border-box;
  top: 0px;
  left: 0px;
}
.cl-vscrollbar {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  bottom: 0;
  right: 0;
  width: 17px;
  background-color: #f0f0f0;
}
.cl-vscrollbar.cl-with-hscrollbar {
  bottom: 17px;
}
.cl-vscrollbar.cl-noscrollable .cl-arrow-up {
  display: none;
}
.cl-vscrollbar.cl-noscrollable .cl-thumb {
  display: none;
}
.cl-vscrollbar.cl-noscrollable .cl-arrow-down {
  display: none;
}
.cl-vscrollbar .cl-arrow-up,
.cl-vscrollbar .cl-arrow-down {
  position: absolute;
  box-sizing: border-box;
  height: 20px;
  width: 100%;
  cursor: default;
  border: 0px;
  background-color: #f0f0f0;
}
.cl-vscrollbar .cl-arrow-up {
  top: 0;
  background: url(icons/scroll-up.png) no-repeat center;
}
.cl-vscrollbar .cl-track {
  position: absolute;
  box-sizing: border-box;
  top: 20px;
  bottom: 20px;
  width: 100%;
}
.cl-vscrollbar .cl-thumb {
  position: absolute;
  box-sizing: border-box;
  top: 0px;
  width: 100%;
  border: 0px;
  background-color: #cdcdcd;
}
.cl-vscrollbar .cl-arrow-down {
  bottom: 0;
  background: url(icons/scroll-down.png) no-repeat center;
}
.cl-hscrollbar {
  position: absolute;
  box-sizing: border-box;
  left: 0;
  right: 0;
  bottom: 0;
  height: 17px;
  background-color: #f0f0f0;
}
.cl-hscrollbar.cl-with-vscrollbar {
  right: 17px;
}
.cl-hscrollbar.cl-noscrollable .cl-arrow-left {
  display: none;
}
.cl-hscrollbar.cl-noscrollable .cl-thumb {
  display: none;
}
.cl-hscrollbar.cl-noscrollable .cl-arrow-right {
  display: none;
}
.cl-hscrollbar .cl-arrow-left,
.cl-hscrollbar .cl-arrow-right {
  position: absolute;
  box-sizing: border-box;
  width: 20px;
  height: 100%;
  cursor: default;
  border: 0px;
  background-color: #f0f0f0;
}
.cl-hscrollbar .cl-arrow-left {
  left: 0;
  background: url(icons/scroll-left.png) no-repeat center;
}
.cl-hscrollbar .cl-track {
  position: absolute;
  box-sizing: border-box;
  left: 20px;
  right: 20px;
  height: 100%;
}
.cl-hscrollbar .cl-thumb {
  position: absolute;
  box-sizing: border-box;
  left: 0px;
  height: 100%;
  border: 0px;
  background-color: #cdcdcd;
}
.cl-hscrollbar .cl-arrow-right {
  right: 0;
  background: url(icons/scroll-right.png) no-repeat center;
}
/**
 * SideNavigation
 */
.cl-sidenavigation {
  text-align: left;
  background-color: white;
  border: 1px solid #bbb;
  color: #333;
  overflow: hidden;
}
.cl-sidenavigation.cl-focus {
  border-color: #1369C5;
}
.cl-sidenavigation .cl-customscrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cl-sidenavigation .cl-customscrollbar::-webkit-scrollbar {
  display: none;
}
.cl-sidenavigation .cl-sidenavigation-item {
  padding: 3px 10px 3px 3px;
  outline: none;
  cursor: pointer;
}
.cl-sidenavigation .cl-sidenavigation-item .cl-icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
  background-image: url(icons/tree-file.png);
  background-position: center center;
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: content-box;
}
.cl-sidenavigation .cl-sidenavigation-item .cl-text {
  white-space: nowrap;
  color: inherit;
  text-align: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-decoration: inherit;
  padding-left: 4px;
  padding-right: 4px;
  text-overflow: ellipsis;
}
.cl-sidenavigation .cl-sidenavigation-item .cl-badge {
  white-space: nowrap;
  text-align: right;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  text-decoration: inherit;
}
.cl-sidenavigation .cl-sidenavigation-item .cl-expand-icon {
  width: 16px;
  height: 16px;
  background-position: center center;
  background-size: 16px auto;
  background-repeat: no-repeat;
  background-origin: content-box;
  box-sizing: content-box;
}
.cl-sidenavigation .cl-sidenavigation-item.cl-folder .cl-icon {
  background-image: url(icons/tree-folder.png);
}
.cl-sidenavigation .cl-sidenavigation-item.cl-folder.cl-expanded .cl-expand-icon {
  background-image: url(icons/expanded.png);
}
.cl-sidenavigation .cl-sidenavigation-item.cl-folder.cl-collapsed .cl-expand-icon {
  background-image: url(icons/collapsed.png);
}
.cl-sidenavigation .cl-sidenavigation-item:hover,
.cl-sidenavigation .cl-sidenavigation-item.cl-hover,
.cl-sidenavigation .cl-sidenavigation-item:focus {
  background-color: #DAEFFC;
  color: #333435;
}
.cl-sidenavigation .cl-sidenavigation-item.cl-selected {
  background-color: rgba(32, 138, 237, 0.5);
  color: #FFFFFF;
}
.cl-sidenavigation .cl-sidenavigation-item.cl-selected.cl-folder.cl-expanded .cl-expand-icon {
  background-image: url(icons/expanded-selected.png);
}
.cl-sidenavigation .cl-sidenavigation-item.cl-selected.cl-folder.cl-collapsed .cl-expand-icon {
  background-image: url(icons/collapsed-selected.png);
}
.cl-sidenavigation .cl-sidenavigation-item.cl-disabled {
  color: #666;
  cursor: default;
}
.cl-sidenavigation .cl-sidenavigation-item.cl-disabled:hover,
.cl-sidenavigation .cl-sidenavigation-item.cl-disabled.cl-hover,
.cl-sidenavigation .cl-sidenavigation-item.cl-disabled:focus {
  background: none;
}
.cl-sidenavigation .cl-sidenavigation-item.cl-disabled.cl-selected {
  color: #777;
  background-color: #ccc;
}
.cl-sidenavigation.cl-disabled {
  color: #666;
}
.cl-sidenavigation.cl-disabled .cl-sidenavigation-item {
  color: #666;
  cursor: default;
}
.cl-sidenavigation.cl-disabled .cl-sidenavigation-item:hover,
.cl-sidenavigation.cl-disabled .cl-sidenavigation-item.cl-hover,
.cl-sidenavigation.cl-disabled .cl-sidenavigation-item:focus {
  background: none;
}
.cl-sidenavigation.cl-disabled .cl-sidenavigation-item.cl-selected {
  background-color: #ccc;
  color: #777;
}
.cl-resizable-s {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 6px;
  width: 100%;
  cursor: s-resize;
}
.cl-resizable-se {
  right: 0px;
  bottom: 0px;
  width: 6px;
  height: 6px;
  position: absolute;
  cursor: se-resize;
  z-index: 90;
}
.cl-resizable-sw {
  left: 0px;
  bottom: 0px;
  width: 6px;
  height: 6px;
  position: absolute;
  cursor: sw-resize;
  z-index: 90;
}
.cl-resizable-n {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 6px;
  width: 100%;
  cursor: n-resize;
}
.cl-resizable-nw {
  left: 0px;
  top: 0px;
  width: 6px;
  height: 6px;
  position: absolute;
  cursor: nw-resize;
  z-index: 90;
}
.cl-resizable-ne {
  right: 0px;
  top: 0px;
  width: 6px;
  height: 6px;
  position: absolute;
  cursor: ne-resize;
  z-index: 90;
}
.cl-resizable-w {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 6px;
  height: 100%;
  cursor: w-resize;
}
.cl-resizable-e {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 6px;
  height: 100%;
  cursor: e-resize;
}
.cl-htmlobject.cl-disabled {
  opacity: .7;
}
/*Image*/
.cl-image {
  border: 0px;
}
.cl-image.cl-disabled {
  opacity: .7;
}
/* Notifier */
.cl-notifier .cl-text {
  display: inline-block;
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes scale {
  from {
    opacity: 0.5;
    -webkit-transform: scale(0.5);
    /* 크롬 */
    -moz-transform: scale(0.5);
    /* FireFox */
    -o-transform: scale(0.5);
    /* Opera */
    transform: scale(0.5);
    /* default */
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    /* 크롬 */
    -moz-transform: scale(1);
    /* FireFox */
    -o-transform: scale(1);
    /* Opera */
    transform: scale(1);
    /* default */
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes slidedown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0%);
  }
}
.cl-control.cl-focus,
.cl-control:focus {
  outline: none;
}
.cl-control.cl-linkedcombobox:focus,
.cl-control.cl-linkedcombobox.cl-focus {
  outline: none;
}
.cl-linkedcombobox-combo:focus,
.cl-linkedcombobox-combo.cl-focus {
  outline: none;
}
.cl-grid-cell:focus {
  outline: none;
  outline-offset: -3px;
}
