/**
 * @file
 * Generic theme-independent base styles.
 */
/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
/* line 13, ../sass/system.base.scss */
#autocomplete {
  border: 1px solid;
  overflow: hidden;
  position: absolute;
  z-index: 100;
}

/* line 19, ../sass/system.base.scss */
#autocomplete ul {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

/* line 25, ../sass/system.base.scss */
#autocomplete li {
  background: #fff;
  color: #000;
  cursor: default;
  white-space: pre;
  zoom: 1;
  /* IE7 */
}

/* Animated throbber */
/* line 33, ../sass/system.base.scss */
html.js input.form-autocomplete {
  background-image: url(../images/misc/throbber.gif);
  background-position: 100% 2px;
  /* LTR */
  background-repeat: no-repeat;
}

/* line 38, ../sass/system.base.scss */
html.js input.throbbing {
  background-position: 100% -18px;
  /* LTR */
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 47, ../sass/system.base.scss */
html.js fieldset.collapsed {
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 0;
  height: 1em;
}

/* line 53, ../sass/system.base.scss */
html.js fieldset.collapsed .fieldset-wrapper {
  display: none;
}

/* line 56, ../sass/system.base.scss */
fieldset.collapsible {
  position: relative;
}

/* line 59, ../sass/system.base.scss */
fieldset.collapsible .fieldset-legend {
  display: block;
}

/**
 * Resizable textareas.
 *
 * @see textarea.js
 */
/* line 68, ../sass/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 76, ../sass/system.base.scss */
.resizable-textarea .grippie {
  background: #eee url(../../misc/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 90, ../sass/system.base.scss */
body.drag {
  cursor: move;
}

/* line 93, ../sass/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 101, ../sass/system.base.scss */
a.tabledrag-handle:hover {
  text-decoration: none;
}

/* line 104, ../sass/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 111, ../sass/system.base.scss */
a.tabledrag-handle-hover .handle {
  background-position: 6px -11px;
}

/* line 114, ../sass/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 121, ../sass/system.base.scss */
div.tree-child {
  background: url(../../misc/tree.png) no-repeat 11px center;
  /* LTR */
}

/* line 124, ../sass/system.base.scss */
div.tree-child-last {
  background: url(../../misc/tree-bottom.png) no-repeat 11px center;
  /* LTR */
}

/* line 127, ../sass/system.base.scss */
div.tree-child-horizontal {
  background: url(../../misc/tree.png) no-repeat -11px center;
}

/* line 130, ../sass/system.base.scss */
.tabledrag-toggle-weight-wrapper {
  text-align: right;
  /* LTR */
}

/**
 * TableHeader behavior.
 *
 * @see tableheader.js
 */
/* line 139, ../sass/system.base.scss */
table.sticky-header {
  background-color: #fff;
  margin-top: 0;
}

/**
 * Progress behavior.
 *
 * @see progress.js
 */
/* Bar */
/* line 150, ../sass/system.base.scss */
.progress .bar {
  background-color: #fff;
  border: 1px solid;
}

/* line 154, ../sass/system.base.scss */
.progress .filled {
  background-color: #000;
  height: 1.5em;
  width: 5px;
}

/* line 159, ../sass/system.base.scss */
.progress .percentage {
  float: right;
  /* LTR */
}

/* Throbber */
/* line 163, ../sass/system.base.scss */
.ajax-progress {
  position: absolute;
}

/* line 166, ../sass/system.base.scss */
.ajax-progress .throbber {
  background: transparent url(../images/misc/throbber.gif) no-repeat 0px -18px;
  display: block;
  position: absolute;
  z-index: 99;
  height: 15px;
  margin: 2px;
  width: 15px;
}
/* line 174, ../sass/system.base.scss */
.date-prev .ajax-progress .throbber {
  top: -20px;
  right: -90px;
}
/* line 178, ../sass/system.base.scss */
.date-next .ajax-progress .throbber {
  top: -20px;
  left: -20px;
}

/* line 183, ../sass/system.base.scss */
.ajax-progress .message {
  padding-left: 20px;
}

/* line 186, ../sass/system.base.scss */
tr .ajax-progress .throbber {
  margin: 0 2px;
}

/* line 189, ../sass/system.base.scss */
.ajax-progress-bar {
  width: 16em;
}

/**
 * Inline items.
 */
/* line 196, ../sass/system.base.scss */
.container-inline div,
.container-inline label {
  display: inline;
}

/* Fieldset contents always need to be rendered as block. */
/* line 201, ../sass/system.base.scss */
.container-inline .fieldset-wrapper {
  display: block;
}

/**
 * Prevent text wrapping.
 */
/* line 208, ../sass/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 216, ../sass/system.base.scss */
html.js .js-hide {
  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.
 */
/* line 228, ../sass/system.base.scss */
.element-hidden {
  display: none;
}

/**
 * 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 240, ../sass/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;
}

/**
 * The .element-focusable class extends the .element-invisible class to allow
 * the element to be focusable when navigated to via the keyboard.
 */
/* line 252, ../sass/system.base.scss */
.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  position: static !important;
  clip: auto;
  overflow: visible;
  height: auto;
}

/**
 * Markup free clearing.
 *
 * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
 */
/* line 265, ../sass/system.base.scss */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* IE6 */
/* line 273, ../sass/system.base.scss */
* html .clearfix {
  height: 1%;
}

/* IE7 */
/* line 277, ../sass/system.base.scss */
*:first-child + html .clearfix {
  min-height: 1%;
}
