.tagger {
  border: 1px solid #aaa;
  background-color: #fff;
  cursor: text;
  font-family: sans-serif;
  font-size: 10pt;
  padding: 1px 1px 0 1px;
  min-height: 19px;
}
.tagger-readonly {
  background-color: #ebebeb;
  cursor: default;
}
.tagger * {
  cursor: default;
}

.tagger .clearer {
  clear: both;
  height: 0px;
  width: 0px;
  line-height: 0px;
  margin: 0px;
  padding: 0px;
  font-size: 0pt;
}

.tagger .droparrow {
  display: block;
  float: right;
  cursor: pointer;
  padding: 7px 4px 9px 4px;
}
.tagger .droparrow.hittarget:focus {
/*  outline: none;
  background-color: #cee4f2;*/
}
.tagger .droparrow img {
  display: block;
}

.tagger .tag {
  display: block;
  float: left;
  width: auto;
  background-color: #f0f5ff;
  border: 1px solid #aaa;
  border-radius: 3px;
  padding: 0 4px;
  margin: 0 1px 1px 0;
  white-space: nowrap;
}

.tagger .tag-single {
  background-color: transparent;
  border: none;
}

.tagger .tag-readonly {
  color: #545454;
}

.tagger .tag .removetag {
  padding: 5px 0 0 3px;
}

.tagger .removetag-single {
  display: block;
  float: right;
  padding: 6px 3px 5px 3px;
  border-right: 1px solid #aaa;
  line-height: 0px;
  font-size: 0pt;
}

.tagger .hittarget, .tagger .hittarget * {
  cursor: pointer;
}

.tagger .intxt {
  display: inline-block;
  float: left;
  font: inherit;
  border: none;
  outline: none;
  cursor: text;
  margin: 0 0 1px 4px;
}

.tagger .hiddenInputSpan {
  position: absolute;
  top: -9999;
  left: -9999;
  width: auto;
  white-space: nowrap;
}

.tagger .suggestions {
  display: none;
  float: left;
  margin-left: -2px;
  position: absolute;
  background-color: #fff;
  max-height: 200px;
  _height: expression( this.scrollHeight > 200 ? "200px" : "auto" );
  overflow: auto;
  overflow-x: hidden;
  border: 1px solid #aaa;
}

.tagger .suggestions ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.tagger .suggestions ul li {
  cursor: pointer;
  background-color: #fff;
  padding: 3px;
  width: 100%;
}
.tagger .suggestions ul li:nth-child(odd) {
  background-color: #f0f5ff;
}
.tagger .suggestions ul li.focus {
  background-color: #cee4f2;
}
.tagger .suggestions ul li .extra {
  color: #555;
  font-style: italic;
}
.tagger .suggestions ul li.missing {
  color: #555;
  font-style: italic;
  cursor: default;
  text-align: center;
}
.tagger .suggestions ul li.disabled {
  color: #555;
  font-style: italic;
  cursor: default;
}