/**
 * @file
 * Basic styling for common markup.
 */
/**
 * HTML elements.
 */
/* line 10, ../sass/system.theme.scss */
fieldset {
  margin-bottom: 1em;
  padding: 0.5em;
}

/* line 14, ../sass/system.theme.scss */
form {
  margin: 0;
  padding: 0;
}

/* line 18, ../sass/system.theme.scss */
hr {
  border: 1px solid gray;
  height: 1px;
}

/* line 22, ../sass/system.theme.scss */
img {
  border: 0;
}

/* line 26, ../sass/system.theme.scss */
table,
form table {
  border: none;
  width: 100%;
  border-collapse: collapse;
  /**
   * Markup generated by theme_tablesort_indicator().
   */
}
/* line 30, ../sass/system.theme.scss */
table td, table th,
form table td,
form table th {
  padding: 15px;
  border: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
/* line 38, ../sass/system.theme.scss */
table thead tr,
form table thead tr {
  border-bottom: none;
}
/* line 41, ../sass/system.theme.scss */
table thead th,
form table thead th {
  border-bottom: none;
  text-align: left;
  /* LTR */
}
/* line 46, ../sass/system.theme.scss */
table tbody,
form table tbody {
  border-top: none;
}
/* line 49, ../sass/system.theme.scss */
table tr.even,
table tr.odd,
form table tr.even,
form table tr.odd {
  border-bottom: 1px solid #ccc;
  padding: 0.1em 0.6em;
}
/* line 57, ../sass/system.theme.scss */
table th.active img,
form table th.active img {
  display: inline;
}
/* line 60, ../sass/system.theme.scss */
table td.active,
form table td.active {
  background-color: #ddd;
}

/**
 * Markup generated by theme_item_list().
 */
/* line 68, ../sass/system.theme.scss */
.item-list .title {
  font-weight: bold;
}

/* line 71, ../sass/system.theme.scss */
.item-list ul {
  margin: 0 0 0.75em 0;
  padding: 0;
}

/* line 75, ../sass/system.theme.scss */
.item-list ul li {
  margin: 0 0 0.25em 1.5em;
  /* LTR */
  padding: 0;
}

/**
 * Markup generated by Form API.
 */
/* line 83, ../sass/system.theme.scss */
.form-item,
.form-actions {
  margin-top: 1em;
  margin-bottom: 1em;
}

/* line 88, ../sass/system.theme.scss */
tr.odd .form-item,
tr.even .form-item {
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
}

/* line 94, ../sass/system.theme.scss */
.form-item .description {
  font-size: 0.85em;
}

/* line 97, ../sass/system.theme.scss */
label {
  display: block;
  font-weight: bold;
}

/* line 101, ../sass/system.theme.scss */
label.option {
  display: inline;
  font-weight: normal;
}

/* line 105, ../sass/system.theme.scss */
.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}

/* line 110, ../sass/system.theme.scss */
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em;
}

/* line 114, ../sass/system.theme.scss */
input.form-checkbox,
input.form-radio {
  vertical-align: middle;
}

/* line 118, ../sass/system.theme.scss */
.marker,
.form-required {
  color: #f00;
}

/* line 122, ../sass/system.theme.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 2px solid red;
}

/**
 * Inline items.
 */
/* line 131, ../sass/system.theme.scss */
.container-inline .form-actions,
.container-inline.form-actions {
  margin-top: 0;
  margin-bottom: 0;
}

/**
 * Markup generated by theme_more_link().
 */
/* line 140, ../sass/system.theme.scss */
.more-link {
  text-align: right;
  /* LTR */
}

/**
 * Markup generated by theme_more_help_link().
 */
/* line 147, ../sass/system.theme.scss */
.more-help-link {
  text-align: right;
  /* LTR */
}

/* line 150, ../sass/system.theme.scss */
.more-help-link a {
  background: url(../../misc/help.png) 0 50% no-repeat;
  /* LTR */
  padding: 1px 0 1px 20px;
  /* LTR */
}

/**
 * Markup generated by theme_pager().
 */
/* line 158, ../sass/system.theme.scss */
.item-list .pager {
  clear: both;
  text-align: center;
}

/* line 162, ../sass/system.theme.scss */
.item-list .pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: 0.5em;
}

/* line 168, ../sass/system.theme.scss */
.pager-current {
  font-weight: bold;
}

/**
 * Autocomplete.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
/* line 178, ../sass/system.theme.scss */
#autocomplete li.selected {
  background: #0072b9;
  color: #fff;
}

/**
 * Collapsible fieldsets.
 *
 * @see collapse.js
 */
/* line 188, ../sass/system.theme.scss */
html.js fieldset.collapsible .fieldset-legend {
  background: url(../images/menu-expanded.png) right 50% no-repeat;
  /* LTR */
  padding-left: 15px;
  /* LTR */
}

/* line 192, ../sass/system.theme.scss */
html.js fieldset.collapsed .fieldset-legend {
  background-image: url(../images/menu-collapsed.png);
  /* LTR */
  background-position: right 50%;
  /* LTR */
}

/* line 196, ../sass/system.theme.scss */
.fieldset-legend span.summary {
  color: #999;
  font-size: 0.9em;
  margin-left: 0.5em;
}

/**
 * TableDrag behavior.
 *
 * @see tabledrag.js
 */
/* line 207, ../sass/system.theme.scss */
tr.drag {
  background-color: #fffff0;
}

/* line 210, ../sass/system.theme.scss */
tr.drag-previous {
  background-color: #ffd;
}

/* line 213, ../sass/system.theme.scss */
.tabledrag-toggle-weight {
  font-size: 0.9em;
}

/* line 216, ../sass/system.theme.scss */
body div.tabledrag-changed-warning {
  margin-bottom: 0.5em;
}

/**
 * TableSelect behavior.
 *
 * @see tableselect.js
*/
/* line 225, ../sass/system.theme.scss */
tr.selected td {
  background: #ffc;
}

/* line 228, ../sass/system.theme.scss */
td.checkbox,
th.checkbox {
  text-align: center;
}

/**
 * Progress bar.
 *
 * @see progress.js
 */
/* line 238, ../sass/system.theme.scss */
.progress {
  font-weight: bold;
}

/* line 241, ../sass/system.theme.scss */
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}

/* line 249, ../sass/system.theme.scss */
.progress .filled {
  background: #0072b9 url(../../misc/progress.gif);
}

/* line 253, ../sass/system.theme.scss */
html body #page .no-padding {
  padding: 0;
}

/* line 256, ../sass/system.theme.scss */
html body #page .no-margin {
  margin: 0;
}
