/**
 * @file
 * Generic theme-independent base styles.
 */
/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
/* line 13, ../../sass/system/system.base.scss */
#autocomplete {
  border: 1px solid;
  overflow: hidden;
  position: absolute;
  z-index: 100;
}
/* line 18, ../../sass/system/system.base.scss */
#autocomplete ul {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}
/* line 24, ../../sass/system/system.base.scss */
#autocomplete li {
  background: #fff;
  color: #000;
  cursor: default;
  white-space: pre;
  zoom: 1;
  /* IE7 */
}

/* Animated throbber */
/* line 38, ../../sass/system/system.base.scss */
html.js input.form-autocomplete {
  background-image: url(/misc/throbber.gif);
  background-position: 100% 2px;
  /* LTR */
  background-repeat: no-repeat;
}
/* line 44, ../../sass/system/system.base.scss */
html.js input.throbbing {
  background-position: 100% -18px;
  /* LTR */
}
/* line 50, ../../sass/system/system.base.scss */
html.js fieldset.collapsed .fieldset-wrapper {
  display: none;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 62, ../../sass/system/system.base.scss */
fieldset.collapsible {
  position: relative;
}
/* line 64, ../../sass/system/system.base.scss */
fieldset.collapsible .fieldset-legend {
  display: block;
}

/**
 * Resizable textareas.
 *
 * @see textarea.js
 */
/* line 75, ../../sass/system/system.base.scss */
.form-textarea-wrapper textarea {
  display: block;
  margin: 0;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 84, ../../sass/system/system.base.scss */
.resizable-textarea .grippie {
  background: #eeeeee url(../img/grippie.png) no-repeat center 2px;
  border: 1px solid #ddd;
  border-top-width: 0;
  cursor: s-resize;
  height: 9px;
  overflow: hidden;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 99, ../../sass/system/system.base.scss */
body.drag {
  cursor: move;
}

/* line 103, ../../sass/system/system.base.scss */
.draggable a.tabledrag-handle {
  cursor: move;
  float: left;
  /* LTR */
  height: 1.7em;
  margin-left: -1em;
  /* LTR */
  overflow: hidden;
  text-decoration: none;
}

/* line 116, ../../sass/system/system.base.scss */
a.tabledrag-handle:hover {
  text-decoration: none;
}
/* line 119, ../../sass/system/system.base.scss */
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;
}
/* line 129, ../../sass/system/system.base.scss */
a.tabledrag-handle-hover .handle {
  background-position: 6px -11px;
}

/* line 135, ../../sass/system/system.base.scss */
div.indentation {
  float: left;
  /* LTR */
  height: 1.7em;
  margin: -0.4em 0.2em -0.4em -0.4em;
  /* LTR */
  padding: 0.42em 0 0.42em 0.6em;
  /* LTR */
  width: 20px;
}
/* line 145, ../../sass/system/system.base.scss */
div.tree-child {
  background: url(/misc/tree.png) no-repeat 11px center;
  /* LTR */
}
/* line 149, ../../sass/system/system.base.scss */
div.tree-child-last {
  background: url(/misc/tree-bottom.png) no-repeat 11px center;
  /* LTR */
}
/* line 153, ../../sass/system/system.base.scss */
div.tree-child-horizontal {
  background: url(/misc/tree.png) no-repeat -11px center;
}

/* line 158, ../../sass/system/system.base.scss */
.tabledrag-toggle-weight-wrapper {
  text-align: right;
  /* LTR */
}

/**
 * TableHeader behavior.
 *
 * @see tableheader.js
 */
/* line 169, ../../sass/system/system.base.scss */
table.sticky-header {
  background-color: #fff;
  margin-top: 0;
}

/**
 * Progress behavior.
 *
 * @see progress.js
 */
/* Bar */
/* line 182, ../../sass/system/system.base.scss */
.progress .bar {
  background-color: #fff;
  border: 1px solid;
}
/* line 186, ../../sass/system/system.base.scss */
.progress .filled {
  background-color: #000;
  height: 28px;
  width: 5px;
}
/* line 191, ../../sass/system/system.base.scss */
.progress .percentage {
  float: right;
  /* LTR */
}

/* Throbber */
/* line 199, ../../sass/system/system.base.scss */
.ajax-progress {
  display: inline-block;
}
/* line 201, ../../sass/system/system.base.scss */
.ajax-progress .throbber {
  background: transparent url(/misc/throbber.gif) no-repeat 0px -18px;
  float: left;
  /* LTR */
  height: 15px;
  margin: 2px;
  width: 15px;
}
/* line 209, ../../sass/system/system.base.scss */
.ajax-progress .message {
  padding-left: 20px;
}

/* line 214, ../../sass/system/system.base.scss */
tr .ajax-progress .throbber {
  margin: 0 2px;
}

/* line 218, ../../sass/system/system.base.scss */
.ajax-progress-bar {
  width: 16em;
}

/**
 * Inline items.
 */
/* line 227, ../../sass/system/system.base.scss */
.container-inline div, .container-inline label {
  display: inline;
}
/* line 230, ../../sass/system/system.base.scss */
.container-inline .fieldset-wrapper {
  display: block;
}

/* Fieldset contents always need to be rendered as block. */
/**
 * Prevent text wrapping.
 */
/* line 241, ../../sass/system/system.base.scss */
.nowrap {
  white-space: nowrap;
}

/**
 * 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.
 */
/* line 250, ../../sass/system/system.base.scss */
html.js .js-hide, .element-hidden {
  display: none;
}

/**
 * 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.
 */
/**
 * Hide elements visually, but keep them available for screen-readers.
 *
 * Used for information required for screen-reader users to understand and use
 * the site where visual display is undesirable. Information provided in this
 * manner should be kept concise, to avoid unnecessary burden on the user.
 * "!important" is used to prevent unintentional overrides.
 */
/* line 272, ../../sass/system/system.base.scss */
.element-invisible {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
}
/* line 280, ../../sass/system/system.base.scss */
.element-invisible.element-focusable:active, .element-invisible.element-focusable:focus {
  position: static !important;
  clip: auto;
  overflow: visible;
  height: auto;
}

/**
 * The .element-focusable class extends the .element-invisible class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
/**
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */
/* line 300, ../../sass/system/system.base.scss */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* IE6 */
/* line 311, ../../sass/system/system.base.scss */
* html .clearfix {
  height: 1%;
}
/* line 314, ../../sass/system/system.base.scss */
*:first-child + html .clearfix {
  min-height: 1%;
}

/* IE7 */
