.ane-menu {
  min-height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
  border-right: 1px solid #e9e9e9;
  color: #333333;
}
.ane-menu a {
  color: #333333;
  cursor: pointer;
  text-decoration: none;
}
.ane-menu-item {
  height: 40px;
  line-height: 40px;
  cursor: pointer;
  position: relative;
}
.ane-menu-item > a > i:first-child {
  min-width: 14px;
  margin-right: 8px;
}
.ane-menu-item > a > i.ane-menu-caret {
  display: none;
}
.ane-menu-item a {
  display: block;
}
.ane-menu-item a:hover {
  color: #337ab7;
}
.ane-menu-item-selected {
  background-color: #eff5fb;
}
.ane-menu-item-selected a {
  color: #337ab7;
}
.ane-menu-item-selected:after {
  content: "";
  border-right: 3px solid #337ab7;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
}
.ane-menu-submenu {
  position: relative;
  height: auto;
  line-height: 40px;
  cursor: pointer;
}
.ane-menu-submenu > a > i:first-child {
  min-width: 14px;
  margin-right: 8px;
}
.ane-menu-submenu > a > i.ane-menu-caret {
  display: none;
}
.ane-menu-submenu > a {
  display: block;
}
.ane-menu-submenu > a:hover {
  color: #337ab7;
}
.ane-menu-submenu > a i.ane-menu-caret.fa {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 16px;
  line-height: inherit;
}
.ane-menu .ane-menu {
  border-right: 0;
  display: none;
}
.ane-menu-open > .ane-menu {
  display: block;
}
.ane-loading-mask {
  position: absolute;
  background: #ffffff;
  filter: alpha(opacity=90);
  opacity: .9;
  color: #000000;
  text-align: center;
  z-index: 300;
}
.ane-select {
  position: relative;
  cursor: pointer;
}
.ane-select.ane-select-multiple {
  cursor: text;
  height: initial;
  padding: 0 0 0 12px;
  min-height: 34px;
}
.ane-select.ane-select-multiple:before {
  content: " ";
  display: table;
}
.ane-select.ane-select-multiple:after {
  content: " ";
  display: table;
  clear: both;
  visibility: hidden;
  font-size: 0;
  height: 0;
}
.ane-select.ane-select-multiple .ane-select-selection .ane-select-search {
  height: 25px;
  line-height: 25px;
  margin-top: 4px;
}
.ane-select-selection {
  list-style: none;
  padding: 0;
}
.ane-select-selection.ane-select-tags li.ane-select-choice {
  position: relative;
  display: block;
  float: left;
  margin: 4px 4px 0 0;
  background-color: #d0d0d0;
  height: 25px;
  max-width: 99%;
  line-height: 25px;
  padding: 0 8px;
  user-select: none;
}
.ane-select-selection.ane-select-tags li.ane-select-choice span {
  padding-right: 16px;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ane-select-selection.ane-select-tags li.ane-select-choice i {
  display: inline;
  cursor: pointer;
  position: absolute;
  right: 4px;
  line-height: inherit;
  padding-left: 8px;
  padding-right: 4px;
}
.ane-select-selection.ane-select-tags li.ane-select-choice i:hover {
  color: #404040;
}
.ane-select-selection .ane-select-selected {
  position: absolute;
  left: 12px;
  padding: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  padding-right: 14px;
}
.ane-select-selection .ane-select-search {
  display: block;
  float: left;
}
.ane-select-selection input.ane-select-search-field {
  height: 100%;
  border-width: 0;
  box-shadow: none;
  background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABNJREFUeNpi+P//PwMTAxAABBgAF/wDAMEBHdcAAAAASUVORK5CYII=') repeat scroll 0 0;
  outline: none;
  line-height: inherit;
}
.ane-select-selection li.ane-select-choice {
  display: none;
}
.ane-select .ane-select-arrow {
  position: absolute;
  top: 7px;
  right: 8px;
  line-height: 20px;
}
.ane-select-dropdown {
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.ane-select-dropdown-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  max-height: 250px;
}
.ane-select-dropdown-menu-item {
  position: relative;
  display: block;
  padding: 7px 13px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
}
.ane-select-dropdown-menu-item:focus,
.ane-select-dropdown-menu-item:hover {
  background: #c7ddef;
}
.ane-select-dropdown-menu-item:focus i,
.ane-select-dropdown-menu-item:hover i {
  color: #dddddd;
  display: inline-block;
}
.ane-select-dropdown-menu-item i {
  display: none;
  position: absolute;
  right: 13px;
  line-height: inherit;
}
.ane-select-dropdown-menu-item-selected {
  background-color: #eee;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
}
.ane-select-dropdown-menu-item-selected:hover {
  background-color: #eee;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
}
.ane-select-dropdown-menu-item-selected i {
  color: #337ab7;
  display: inline-block;
}
.ane-select-dropdown-menu-item-disabled,
.ane-select-dropdown-menu-item-disabled:hover {
  background-color: inherit;
  color: #b3b3b3;
  cursor: not-allowed;
}
.ane-upload-container input {
  position: absolute;
  clip: rect(0 0 0 0);
  outline: none;
}
.ane-upload-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ane-upload-list li {
  margin: 8px 0;
  line-height: 24px;
  position: relative;
  width: 500px;
}
.ane-upload-list li .ane-upload-btn-close {
  cursor: pointer;
  display: none;
}
.ane-upload-list li .ane-upload-list-progress {
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
.ane-upload-list li.text-danger .ane-upload-btn-close {
  display: inline-block;
}
.ane-upload-list li:hover .ane-upload-list-progress {
  right: 10px;
}
.ane-upload-list li:hover i.ane-upload-btn-close {
  display: inline-block;
}
.ane-upload-list li:hover i.text-success {
  display: none;
}
.ane-upload-list li i {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 24px;
}
.ane-upload-list li span {
  display: inline-block;
}
.ane-upload-list-info {
  display: inline-block;
}
.ane-upload-list-info i {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 24px;
}
.ane-upload-list-info span {
  position: absolute;
  left: 18px;
  top: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 350px;
}
.ane-upload-card-wall {
  display: inline-block;
}
.ane-upload-card-item {
  height: 96px;
  width: 96px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #f5f5f5;
  display: inline-block;
  text-align: center;
  word-wrap: break-word;
  margin-right: 8px;
  margin-bottom: 8px;
  vertical-align: middle;
  padding: 8px;
  position: relative;
}
.ane-upload-card-item .ane-upload-card-progress {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -7px;
}
.ane-upload-card-item img {
  height: 100%;
  width: 100%;
}
.ane-upload-card-item .ane-upload-card-tool {
  display: none;
}
.ane-upload-card-item .ane-upload-card-tool .fa {
  margin: 0 4px;
  color: #ffffff;
  cursor: pointer;
}
.ane-upload-card-item:hover .ane-upload-card-tool {
  display: block;
  position: absolute;
  width: 78px;
  height: 78px;
  left: 8px;
  top: 8px;
  padding: 30px 0;
  /* 支持IE8的透明背景 */
  background: transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACAQMAAACjTyRkAAAAA1BMVEUAAACnej3aAAAAAXRSTlO7HFWyYgAAAAxJREFUeNpjYGBgAAAABAAByOrr+QAAAABJRU5ErkJggg==") repeat scroll 0 0;
}
.ane-upload-select-card {
  padding: 20px 0;
  border-style: dashed;
  cursor: pointer;
}
.ane-upload-select-card:hover {
  border-color: #337ab7;
}
.ane-upload-select-card .fa {
  display: block;
  font-size: 2em;
}
.ane-calendar table {
  width: 100%;
  max-width: 100%;
}
.ane-calendar-column-header {
  line-height: 18px;
  width: 33px;
  padding: 6px 0;
  text-align: center;
}
.ane-calendar-cell {
  padding: 4px 0;
}
.ane-calendar-prev-month-cell .ane-calendar-date,
.ane-calendar-next-month-cell .ane-calendar-date {
  color: #b3b3b3;
}
.ane-calendar-today .ane-calendar-date {
  border-color: #337ab7;
  font-weight: 700;
  color: #337ab7;
}
.ane-calendar-selected-day .ane-calendar-date {
  background: #337ab7;
  color: #fff;
  border: 1px solid transparent;
}
.ane-calendar-selected-day .ane-calendar-date:hover {
  background: #337ab7;
}
.ane-calendar-disabled-cell .ane-calendar-date {
  cursor: not-allowed;
  color: #b3b3b3;
  background: #eeeeee;
  border-radius: 0;
  width: auto;
  border: 1px solid transparent;
}
.ane-calendar-disabled-cell .ane-calendar-date:hover {
  background: #eeeeee;
}
.ane-calendar-date {
  display: block;
  margin: 0 auto;
  color: #333333;
  border-radius: 2px;
  width: 20px;
  height: 20px;
  line-height: 18px;
  border: 1px solid transparent;
  padding: 0;
  background: transparent;
  text-align: center;
  cursor: pointer;
}
.ane-calendar-date:hover {
  background: #c7ddef;
}
.ane-calendar-year-view {
  table-layout: fixed;
  text-align: center;
}
.ane-calendar-year-view .ane-calendar-cell {
  padding: 20px 0;
}
.ane-calendar-year-view .ane-calendar-date {
  width: auto;
  display: inline-block;
  padding: 0 6px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .form-inline .ane-datepicker {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
}
.ane-datepicker {
  position: relative;
}
.ane-datepicker-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -7px;
}
.ane-datepicker-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -7px;
  padding: 1px;
  cursor: pointer;
  display: none;
  background: #fff;
}
.ane-datepicker:hover .ane-datepicker-clear {
  display: inline-block;
}
.ane-datepicker .ane-datepicker-input {
  background-color: #fff;
}
.ane-datepicker-panel-container {
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  user-select: none;
}
.ane-datepicker-panel {
  width: 252px;
}
.ane-datepicker-panel a {
  color: #337ab7;
  cursor: pointer;
  text-decoration: none;
}
.ane-datepicker-panel a:hover {
  color: #23527c;
}
.ane-datepicker-panel-header {
  text-align: center;
  height: 34px;
  line-height: 34px;
  border-bottom: 1px solid #eeeeee;
}
.ane-datepicker-panel .ane-datepicker-prev-year-btn {
  float: left;
  margin-left: 7px;
  padding: 0 5px;
  font-size: 16px;
}
.ane-datepicker-panel .ane-datepicker-prev-month-btn {
  float: left;
  margin-left: 7px;
  padding: 0 5px;
  font-size: 16px;
}
.ane-datepicker-panel .ane-datepicker-next-year-btn {
  float: right;
  margin-right: 7px;
  padding: 0 5px;
  font-size: 16px;
}
.ane-datepicker-panel .ane-datepicker-next-month-btn {
  float: right;
  margin-right: 7px;
  padding: 0 5px;
  font-size: 16px;
}
.ane-datepicker-panel .ane-datepicker-month-select {
  padding: 0 2px;
  font-weight: 700;
  display: inline-block;
  color: rgba(0, 0, 0, 0.65);
  line-height: 34px;
}
.ane-datepicker-panel .ane-datepicker-year-select {
  padding: 0 2px;
  font-weight: 700;
  display: inline-block;
  color: rgba(0, 0, 0, 0.65);
  line-height: 34px;
}
.ane-datepicker-panel-today-btn {
  display: inline-block;
  text-align: center;
  margin: 0 0 0 8px;
}
.ane-datepicker-panel-now-btn {
  display: inline-block;
  text-align: center;
  float: left;
  margin: 0;
  padding-left: 12px;
}
.ane-datepicker-panel-timepicker-btn {
  display: inline-block;
  text-align: center;
  margin-right: 20px;
  float: right;
}
.ane-datepicker-panel .ane-datepicker-panel-ok-btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  color: #fff;
  background-color: #337ab7;
  border-color: #2e6da4;
  float: right;
  margin-right: 9px;
}
.ane-datepicker-panel .ane-datepicker-panel-ok-btn:hover {
  color: #fff;
  background-color: #204d74;
  border-color: #122b40;
}
.ane-datepicker-panel-body {
  padding: 4px 8px;
}
.ane-datepicker-panel-footer-btn {
  border-top: 1px solid #eeeeee;
  text-align: center;
  display: block;
  line-height: 1.5;
  padding: 10px 0;
}
.ane-datepicker-panel-footer-btn:after {
  clear: both;
  content: ' ';
  display: inline-block;
}
.form-inline .ane-timepicker {
  display: inline-block;
  width: auto;
  vertical-align: middle;
}
.ane-timepicker {
  position: relative;
}
.ane-timepicker-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -7px;
}
.ane-timepicker-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -7px;
  padding: 1px;
  cursor: pointer;
  display: none;
  background: #fff;
}
.ane-timepicker:hover .ane-timepicker-clear {
  display: inline-block;
}
.ane-timepicker .ane-timepicker-input {
  background-color: #fff;
}
.ane-timepicker-panel-container {
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  user-select: none;
}
.ane-timepicker-panel {
  width: 252px;
}
.ane-timepicker-view {
  height: 198px;
}
.ane-timepicker-view-combobox {
  width: 100%;
}
.ane-timepicker-view-select {
  display: inline-block;
  width: 33.33%;
  border-left: 1px solid #eeeeee;
  float: left;
  overflow: hidden;
}
.ane-timepicker-view-select:first-child {
  border-left: none;
}
.ane-timepicker-view-select:hover {
  overflow: auto;
}
.ane-timepicker-view-select ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-height: 200px;
}
.ane-timepicker-view-select ul:after {
  content: "";
  display: block;
  height: 176px;
}
.ane-timepicker-view-select li {
  text-align: center;
  list-style: none;
  box-sizing: content-box;
  margin: 0;
  width: 100%;
  height: 24px;
  line-height: 24px;
  cursor: pointer;
}
.ane-timepicker-view-select li:hover {
  background: #c7ddef;
}
.ane-timepicker-view-select .ane-timepicker-view-select-option-selected {
  background: #337ab7;
  font-weight: 700;
  color: #fff;
}
.ane-timepicker-view-select .ane-timepicker-view-select-option-selected:hover {
  background: #337ab7;
}
.ane-checkbox {
  display: inline;
  padding-left: 0;
}
.ane-checkbox label {
  font-weight: 400;
  font-size: 13px;
  vertical-align: middle;
}
.ane-checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  left: -9999px;
  z-index: 12;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.ane-checkbox input[type=checkbox]:checked,
.ane-checkbox input[type=checkbox]:focus {
  outline: 0!important;
}
.ane-checkbox input[type=checkbox] + .text {
  position: relative;
  z-index: 11;
  display: inline-block;
  margin: 0;
  line-height: 20px;
  min-height: 18px;
  min-width: 18px;
  font-weight: 400;
}
.ane-checkbox input[type="checkbox"].ane-checkbox-indeterminate + .text::before {
  display: inline-block;
  content: "\F068";
  background-color: #f5f8fc;
  border-color: #333333;
}
.ane-checkbox input[type="checkbox"]:checked + .text::before {
  display: inline-block;
  content: "\F00C";
  background-color: #f5f8fc;
  border-color: #333333;
}
.ane-checkbox input[type="checkbox"] + .text::before {
  font-family: fontAwesome;
  font-weight: 700;
  font-size: 13px;
  color: #333333;
  content: " ";
  background-color: #fafafa;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  height: 18px;
  line-height: 16px;
  min-width: 18px;
  margin-right: 5px;
  margin-bottom: 2px;
  border-width: 1px;
  border-style: solid;
  border-color: #c8c8c8;
  border-image: initial;
  border-radius: 0px;
  transition: all 0.3s ease;
}
.ane-checkbox label.ane-checkbox-inner {
  padding-left: 0;
}
/*-------------------------------------
zTree Style

version:    3.4
author:     Hunter.z
email:      hunter.z@263.net
website:    http://code.google.com/p/jquerytree/

-------------------------------------*/

.ztree * {padding:0; margin:0; font-size:12px; font-family: Verdana, Arial, Helvetica, AppleGothic, sans-serif}
.ztree {margin:0; padding:5px; color:#333}
.ztree li{padding:0; margin:0; list-style:none; line-height:17px; text-align:left; white-space:nowrap; outline:0}
.ztree li ul{ margin:0; padding:0 0 0 18px}
.ztree li ul.line{ background:url(line_conn.png) 0 0 repeat-y;}

.ztree li a {padding-right:3px; margin:0; cursor:pointer; height:21px; color:#333; background-color: transparent; text-decoration:none; vertical-align:top; display: inline-block}
.ztree li a:hover {text-decoration:underline}
.ztree li a.curSelectedNode {padding-top:0px; background-color:#e5e5e5; color:black; height:21px; opacity:0.8;}
.ztree li a.curSelectedNode_Edit {padding-top:0px; background-color:#e5e5e5; color:black; height:21px; border:1px #666 solid; opacity:0.8;}
.ztree li a.tmpTargetNode_inner {padding-top:0px; background-color:#aaa; color:white; height:21px; border:1px #666 solid;
  opacity:0.8; filter:alpha(opacity=80)}
.ztree li a.tmpTargetNode_prev {}
.ztree li a.tmpTargetNode_next {}
.ztree li a input.rename {height:14px; width:80px; padding:0; margin:0;
  font-size:12px; border:1px #585956 solid; *border:0px}
.ztree li span {line-height:21px; margin-right:2px}
.ztree li span.button {line-height:0; margin:0; padding: 0; width:21px; height:21px; display: inline-block; vertical-align:middle;
  border:0 none; cursor: pointer;outline:none;
  background-color:transparent; background-repeat:no-repeat; background-attachment: scroll;
  background-image:url(metro.png); *background-image:url(metro.gif)}

.ztree li span.button.chk {width:13px; height:13px; margin:0 2px; cursor: auto}
.ztree li span.button.chk.checkbox_false_full {background-position: -5px -5px;}
.ztree li span.button.chk.checkbox_false_full_focus {background-position: -5px -26px;}
.ztree li span.button.chk.checkbox_false_part {background-position: -5px -48px;}
.ztree li span.button.chk.checkbox_false_part_focus {background-position: -5px -68px;}
.ztree li span.button.chk.checkbox_false_disable {background-position: -5px -89px;}
.ztree li span.button.chk.checkbox_true_full {background-position: -26px -5px;}
.ztree li span.button.chk.checkbox_true_full_focus {background-position: -26px -26px;}
.ztree li span.button.chk.checkbox_true_part {background-position: -26px -48px;}
.ztree li span.button.chk.checkbox_true_part_focus {background-position: -26px -68px;}
.ztree li span.button.chk.checkbox_true_disable {background-position: -26px -89px;}
.ztree li span.button.chk.radio_false_full {background-position: -47px -5px;}
.ztree li span.button.chk.radio_false_full_focus {background-position: -47px -26px;}
.ztree li span.button.chk.radio_false_part {background-position: -47px -47px;}
.ztree li span.button.chk.radio_false_part_focus {background-position: -47px -68px;}
.ztree li span.button.chk.radio_false_disable {background-position: -47px -89px;}
.ztree li span.button.chk.radio_true_full {background-position: -68px -5px;}
.ztree li span.button.chk.radio_true_full_focus {background-position: -68px -26px;}
.ztree li span.button.chk.radio_true_part {background-position: -68px -47px;}
.ztree li span.button.chk.radio_true_part_focus {background-position: -68px -68px;}
.ztree li span.button.chk.radio_true_disable {background-position: -68px -89px;}

.ztree li span.button.switch {width:21px; height:21px}
.ztree li span.button.root_open{background-position:-105px -63px}
.ztree li span.button.root_close{background-position:-126px -63px}
.ztree li span.button.roots_open{background-position: -105px 0;}
.ztree li span.button.roots_close{background-position: -126px 0;}
.ztree li span.button.center_open{background-position: -105px -21px;}
.ztree li span.button.center_close{background-position: -126px -21px;}
.ztree li span.button.bottom_open{background-position: -105px -42px;}
.ztree li span.button.bottom_close{background-position: -126px -42px;}
.ztree li span.button.noline_open{background-position: -105px -84px;}
.ztree li span.button.noline_close{background-position: -126px -84px;}
.ztree li span.button.root_docu{ background:none;}
.ztree li span.button.roots_docu{background-position: -84px 0;}
.ztree li span.button.center_docu{background-position: -84px -21px;}
.ztree li span.button.bottom_docu{background-position: -84px -42px;}
.ztree li span.button.noline_docu{ background:none;}

.ztree li span.button.ico_open{margin-right:2px; background-position: -147px -21px; vertical-align:top; *vertical-align:middle}
.ztree li span.button.ico_close{margin-right:2px; margin-right:2px; background-position: -147px 0; vertical-align:top; *vertical-align:middle}
.ztree li span.button.ico_docu{margin-right:2px; background-position: -147px -42px; vertical-align:top; *vertical-align:middle}
.ztree li span.button.edit {margin-left:2px; margin-right: -1px; background-position: -189px -21px; vertical-align:top; *vertical-align:middle}
.ztree li span.button.edit:hover {
  background-position: -168px -21px;
}
.ztree li span.button.remove {margin-left:2px; margin-right: -1px; background-position: -189px -42px; vertical-align:top; *vertical-align:middle}
.ztree li span.button.remove:hover {
  background-position: -168px -42px;
}
.ztree li span.button.add {margin-left:2px; margin-right: -1px; background-position: -189px 0; vertical-align:top; *vertical-align:middle}
.ztree li span.button.add:hover {
  background-position: -168px 0;
}
.ztree li span.button.ico_loading{margin-right:2px; background:url(loading.gif) no-repeat scroll 0 0 transparent; vertical-align:top; *vertical-align:middle}

ul.tmpTargetzTree {background-color:#FFE6B0; opacity:0.8; filter:alpha(opacity=80)}

span.tmpzTreeMove_arrow {width:16px; height:21px; display: inline-block; padding:0; margin:2px 0 0 1px; border:0 none; position:absolute;
    background-color:transparent; background-repeat:no-repeat; background-attachment: scroll;
    background-position:-168px -84px; background-image:url(metro.png); *background-image:url(metro.gif)}

ul.ztree.zTreeDragUL {margin:0; padding:0; position:absolute; width:auto; height:auto;overflow:hidden; background-color:#cfcfcf; border:1px #00B83F dotted; opacity:0.8; filter:alpha(opacity=80)}
.ztreeMask {z-index:10000; background-color:#cfcfcf; opacity:0.0; filter:alpha(opacity=0); position:absolute}
.ane-tree-select {
  position: relative;
  cursor: pointer;
}
.ane-tree-select.ane-tree-select-multiple {
  cursor: text;
  height: initial;
  padding: 0 0 0 12px;
  min-height: 34px;
}
.ane-tree-select.ane-tree-select-multiple:before {
  content: " ";
  display: table;
}
.ane-tree-select.ane-tree-select-multiple:after {
  content: " ";
  display: table;
  clear: both;
  visibility: hidden;
  font-size: 0;
  height: 0;
}
.ane-tree-select.ane-tree-select-multiple .ane-tree-select-selection .ane-tree-select-search {
  height: 25px;
  line-height: 25px;
  margin-top: 4px;
}
.ane-tree-select-selection {
  list-style: none;
  padding: 0;
}
.ane-tree-select-selection.ane-tree-select-tags li.ane-tree-select-choice {
  position: relative;
  display: block;
  float: left;
  margin: 4px 4px 0 0;
  background-color: #d0d0d0;
  height: 25px;
  max-width: 99%;
  line-height: 25px;
  padding: 0 8px;
  user-select: none;
}
.ane-tree-select-selection.ane-tree-select-tags li.ane-tree-select-choice span {
  padding-right: 16px;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.ane-tree-select-selection.ane-tree-select-tags li.ane-tree-select-choice i {
  display: inline;
  cursor: pointer;
  position: absolute;
  right: 4px;
  line-height: inherit;
  padding-left: 8px;
  padding-right: 4px;
}
.ane-tree-select-selection.ane-tree-select-tags li.ane-tree-select-choice i:hover {
  color: #404040;
}
.ane-tree-select-selection .ane-tree-select-selected {
  position: absolute;
  left: 12px;
  padding: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
  padding-right: 14px;
}
.ane-tree-select-selection .ane-tree-select-search {
  display: block;
  float: left;
}
.ane-tree-select-selection input.ane-tree-select-search-field {
  height: 100%;
  border-width: 0;
  box-shadow: none;
  background: transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABNJREFUeNpi+P//PwMTAxAABBgAF/wDAMEBHdcAAAAASUVORK5CYII=') repeat scroll 0 0;
  outline: none;
  line-height: inherit;
}
.ane-tree-select-selection li.ane-tree-select-choice {
  display: none;
}
.ane-tree-select .ane-tree-select-arrow {
  position: absolute;
  top: 7px;
  right: 8px;
  line-height: 20px;
}
.ane-tree-select-dropdown {
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
}
.ane-tree-select-dropdown-menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  max-height: 250px;
}
.ane-tree-select-dropdown-menu-item {
  position: relative;
  display: block;
  padding: 7px 13px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  user-select: none;
}
.ane-tree-select-dropdown-menu-item:focus,
.ane-tree-select-dropdown-menu-item:hover {
  background: #c7ddef;
}
.ane-tree-select-dropdown-menu-item:focus i,
.ane-tree-select-dropdown-menu-item:hover i {
  color: #dddddd;
  display: inline-block;
}
.ane-tree-select-dropdown-menu-item i {
  display: none;
  position: absolute;
  right: 13px;
  line-height: inherit;
}
.ane-tree-select-dropdown-menu-item-selected {
  background-color: #eee;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
}
.ane-tree-select-dropdown-menu-item-selected:hover {
  background-color: #eee;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.65);
}
.ane-tree-select-dropdown-menu-item-selected i {
  color: #337ab7;
  display: inline-block;
}
.ane-tree-select-dropdown-menu-item-disabled,
.ane-tree-select-dropdown-menu-item-disabled:hover {
  background-color: inherit;
  color: #b3b3b3;
  cursor: not-allowed;
}
.ane-radio {
  display: inline;
  padding-left: 0;
}
.ane-radio label {
  font-weight: 400;
  font-size: 13px;
  vertical-align: middle;
}
.ane-radio input[type=radio] {
  opacity: 0;
  position: absolute;
  left: -9999px;
  z-index: 12;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.ane-radio input[type=radio]:checked,
.ane-radio input[type=radio]:focus {
  outline: 0!important;
}
.ane-radio input[type=radio] + .text {
  position: relative;
  z-index: 11;
  display: inline-block;
  margin: 0;
  line-height: 20px;
  min-height: 18px;
  min-width: 18px;
  font-weight: 400;
}
.ane-radio input[type="radio"]:checked + .text::before {
  display: inline-block;
  content: "\F111";
  background-color: #f5f8fc;
  border-color: #333333;
}
.ane-radio input[type="radio"] + .text::before {
  font-family: fontAwesome;
  font-weight: 700;
  font-size: 13px;
  color: #333333;
  content: " ";
  background-color: #fafafa;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  height: 18px;
  line-height: 16px;
  min-width: 18px;
  margin-right: 5px;
  margin-bottom: 2px;
  border-width: 1px;
  border-style: solid;
  border-color: #c8c8c8;
  border-image: initial;
  border-radius: 0px;
  transition: all 0.3s ease;
}
.ane-radio input[type=radio] + .text:before {
  border-radius: 100%;
  font-size: 10px;
  font-family: FontAwesome;
  line-height: 17px;
  height: 19px;
  min-width: 19px;
}
.ane-radio label.ane-radio-inner {
  padding-left: 0;
}
