/**
 * Auto complete.
 */
#autocomplete {
  border: 1px solid;
  overflow: hidden;
  position: absolute;
  z-index: 100; }
  #autocomplete ul {
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0; }
  #autocomplete li {
    background: #fff;
    color: #333;
    cursor: default;
    white-space: pre; }

/* Animated throbber */
html.js input.form-autocomplete {
  background-image: url(/misc/throbber-inactive.png);
  background-position: 100% center;
  /* LTR */
  background-repeat: no-repeat; }

html.js input.throbbing {
  background-image: url(/misc/throbber-active.gif);
  background-position: 100% center;
  /* LTR */ }

/**
 * For anything you want to hide on page load when JS is enabled, so
 * that you can use the JS to control visibility and avoid flicker.
 */
html.js .js-hide {
  display: none; }

/**
 * Resizable textareas.
 *
 * @see textarea.js
 */
.form-textarea-wrapper textarea {
  margin: 0;
  width: 100%;
  display: block;
  box-sizing: border-box; }

.resizable-textarea .grippie {
  background: #F1F1F1 url(/misc/grippie.png) no-repeat center 2px;
  border: 1px solid #D6D7D9;
  border-top-width: 0;
  cursor: s-resize;
  height: 9px;
  overflow: hidden; }

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
body.drag {
  cursor: move; }

.draggable a.tabledrag-handle {
  cursor: move;
  float: left;
  /* LTR */
  height: 1.7em;
  margin-left: -1em;
  /* LTR */
  overflow: hidden;
  text-decoration: none; }

a.tabledrag-handle:hover {
  text-decoration: none; }

a.tabledrag-handle .handle {
  background: url(/misc/draggable.png) no-repeat 6px 9px;
  height: 13px;
  margin: -0.4em 0.5em;
  /* LTR */
  padding: 0.42em 0.5em;
  /* LTR */
  width: 13px; }

a.tabledrag-handle-hover .handle {
  background-position: 6px -11px; }

div.tree-child {
  background: url(/misc/tree.png) no-repeat 11px center;
  /* LTR */ }

div.tree-child-last {
  background: url(/misc/tree-bottom.png) no-repeat 11px center;
  /* LTR */ }

div.tree-child-horizontal {
  background: url(/misc/tree.png) no-repeat -11px center; }

.tabledrag-toggle-weight-wrapper {
  text-align: right;
  /* LTR */ }

/**
 * TableHeader behavior.
 *
 * @see tableheader.js
 */
table.sticky-header {
  background-color: #fff;
  margin-top: 0; }

/* Throbber */
.ajax-progress {
  display: inline-block; }

.ajax-progress .throbber {
  background: transparent url(/misc/throbber-active.gif) no-repeat 0px center;
  float: left;
  /* LTR */
  height: 15px;
  margin: 2px;
  width: 15px; }

.ajax-progress .message {
  padding-left: 20px;
  /* LTR */ }

tr .ajax-progress .throbber {
  margin: 0 2px; }

.ajax-progress-bar {
  width: 16em; }

/**
 * Hide elements from all users.
 *
 * Used for elements which should not be immediately displayed to any user. An
 * example would be a collapsible fieldset that will be expanded with a click
 * from a user. The effect of this class can be toggled with the jQuery show()
 * and hide() functions.
 */
.element-hidden {
  display: none; }

.element-invisible {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px; }
  .element-invisible.element-focusable:active, .element-invisible.element-focusable:focus {
    position: static !important;
    clip: auto;
    overflow: visible;
    height: auto; }
