<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* jquery.suggest, ch.jquery.ui.suggestlist */
.suggest-list-drop,
.suggest {
  background: white;
  color: black;
  border: 1px solid #A6A6A6;
  border-top-width: 0px;
  max-height: 20em;
  overflow: auto;
  box-shadow: 2px 2px 5px #888888;
  -moz-box-shadow: 2px 2px 5px #888888;
  -webkit-box-shadow: 2px 2px 5px #888888;
}
/* copied from .form-control-validation() */
input[type="text"].suggest-input-error {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
input[type="text"].suggest-input-error:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.suggest-error {
  color: red;
  padding: 5px 0;
  text-indent: 5px;
}
.suggest-empty {
  color: gray;
  font-style: italic;
  padding: 5px 0;
  text-indent: 5px;
}
.suggest table {
  border-spacing: 0;
  border-collapse: collapse;
}
.suggest table th {
  padding: 2px 4px;
  text-align: left;
  color: #0F6D96;
}
.suggest table td {
  padding: 6px 4px;
  border-bottom: 1px solid #EEE;
}
.suggest-list-drop ul,
.suggest-list-drop li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.suggest-list-drop li {
  font-size: 1.2em;
  padding: 3px 5px;
  cursor: default;
}
/*.suggest-list-selected, .suggest-item-selected {
	background: @suggest-item-active-background;
	color: @suggest-item-active-color !important;
}*/
.suggest-item-selected td {
  border-bottom: 1px solid #2b88e5;
}
li.suggest-list-more {
  text-align: right;
  cursor: pointer;
  font-size: 0.9em;
}
.suggest-list-more.suggest-list-selected {
  background: #394D55;
}
.suggest-list-search-highlight {
  font-weight: bold;
}
/* jquery.timeSuggest, jquery.dateSuggest */
label.invalidDate,
label.invalidTime {
  color: Red;
  font-weight: bold;
}
.timeSuggest td {
  padding-right: 0px;
}
.timeSuggest-day,
.timeSuggest-night {
  width: 14px;
  height: 17px;
}
.timeSuggest-day {
  background-image: url(../images/time_icons/day.png);
}
.timeSuggest-night {
  background-image: url(../images/time_icons/night.png);
}
tr.suggest-selected .timeSuggest-day {
  background-image: url(../images/time_icons/day_selected.png);
}
tr.suggest-selected .timeSuggest-night {
  background-image: url(../images/time_icons/night_selected.png);
}
</pre></body></html>