/**
 * @file
 * System wide base styles.
 */
/**
 * @file
 * Base styles for autocomplete functionality.
 *
 * @see autocomplete.js
 */
/* Suggestion list */
#autocomplete {
  position: absolute;
  z-index: 100;
  overflow: hidden;
}
#autocomplete ul {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-image: none;
}
#autocomplete li {
  cursor: default;
  white-space: pre;
  zoom: 1;
  /* IE7 */
}

/* Animated throbber */
html.js .form-autocomplete {
  background-image: url('sites/all/themes/omega/omega/images/misc/throbber.gif?1382488163');
  background-position: 100% 2px;
  /* LTR */
  background-repeat: no-repeat;
}

html.js .throbbing {
  background-position: 100% -18px;
  /* LTR */
}

/**
 * @file
 * Base styles for collapsible fieldset functionality.
 *
 * @see collapse.js
 */
html.js fieldset.collapsed {
  height: 1em;
}

html.js fieldset.collapsed .fieldset-wrapper {
  display: none;
}

fieldset.collapsible {
  position: relative;
}

fieldset.collapsible .fieldset-legend {
  display: block;
}

/**
 * @file
 * Base styles for the resizable textareas functionality.
 *
 * @see textarea.js
 */
.form-textarea-wrapper textarea {
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}

.resizable-textarea .grippie {
  height: 9px;
  background: #eee url('sites/all/themes/omega/omega/images/misc/grippie.png?1382488163') no-repeat center 2px;
  border: 1px solid #ddd;
  border-top-width: 0;
  cursor: s-resize;
  overflow: hidden;
}

/**
 * @file
 * Base styling for the tabledrag behavior.
 *
 * @see tabledrag.js
 */
body.drag {
  cursor: move;
}

/* Tabledrag Handle */
.tabledrag-handle {
  float: left;
  /* LTR */
  overflow: hidden;
  text-decoration: none;
  cursor: move;
}
.tabledrag-handle .handle {
  height: 15px;
  width: 15px;
  margin: -0.4em 0;
  padding: 0.4em;
  background: url('sites/all/themes/omega/omega/images/misc/draggable.png?1382488163') no-repeat 6px 9px;
}
.tabledrag-handle:hover {
  text-decoration: none;
}

.tabledrag-handle-hover .handle {
  background-position: 6px -11px;
}

/* Indentation */
.indentation {
  float: left;
  /* LTR */
  width: 20px;
}

/* Tree Images */
.tree-child {
  background: url('sites/all/themes/omega/omega/images/misc/tree.png?1382488163') no-repeat 12px center;
  /* LTR */
}

.tree-child-last {
  background: url('sites/all/themes/omega/omega/images/misc/tree-bottom.png?1382488163') no-repeat 12px center;
  /* LTR */
}

.tree-child-horizontal {
  background: url('sites/all/themes/omega/omega/images/misc/tree.png?1382488163') no-repeat -12px center;
}

/* Toggle Weight Link */
.tabledrag-toggle-weight-wrapper {
  text-align: right;
  /* LTR */
}

/**
 * @file
 * Base styling for the tableheader behavior.
 *
 * @see tableheader.js
 */
.sticky-header {
  margin-top: 0;
  background-color: #fff;
}

/**
 * @file
 * Base styles for the progress behavior.
 *
 * @see progress.js
 */
/* Bar */
.progress .bar {
  background-color: #fff;
  border: 1px solid;
}
.progress .filled {
  height: 1.5em;
  width: 5px;
  background-color: #000;
}
.progress .percentage {
  float: right;
  /* LTR */
}

/* Throbber */
.ajax-progress {
  display: inline-block;
}
.ajax-progress .throbber {
  float: left;
  /* LTR */
  height: 15px;
  width: 15px;
  margin: 2px;
  background: transparent url('sites/all/themes/omega/omega/images/misc/throbber.gif?1382488163') no-repeat 0px -18px;
}
.ajax-progress .message {
  padding-left: 20px;
}

tr .ajax-progress .throbber {
  margin: 0 2px;
}

.ajax-progress-bar {
  width: 16em;
}

/**
 * @file
 * System utility classes.
 */
/**
 * Inline items.
 */
.container-inline div,
.container-inline label {
  display: inline;
}

/* Fieldset contents always need to be rendered as block. */
.container-inline .fieldset-wrapper {
  display: block;
}

/**
 * Prevent text wrapping.
 */
.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.
 */
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.
 */
.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.
 */
.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.
 */
.element-invisible.element-focusable:active,
.element-invisible.element-focusable:focus {
  position: static !important;
  clip: auto;
  overflow: visible;
  height: auto;
}

/**
 * Use the clearfix from Compass.
 */
.clearfix {
  *zoom: 1;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
/**
 * @file
 * Menu and navigational styles.
 */
/**
 * @file
 * Styles for a hierarchical menu as generated by theme_menu_tree().
 */
.menu {
  border: none;
  list-style: none;
  text-align: left;
  /* LTR */
  /* Menu Item Hierarchy Modifiers */
}
.menu .expanded {
  list-style-image: url('sites/all/themes/omega/omega/images/misc/menu-expanded.png?1382488163');
  list-style-type: circle;
}
.menu .collapsed {
  list-style-image: url('sites/all/themes/omega/omega/images/misc/menu-collapsed.png?1382488163');
  /* LTR */
  list-style-type: disc;
}
.menu .leaf {
  list-style-image: url('sites/all/themes/omega/omega/images/misc/menu-leaf.png?1382488163');
  list-style-type: square;
}

/* Menu State Modifiers */
.active {
  color: #000;
}

.menu-disabled {
  background: #ccc;
}

/**
 * @file
 * Inline links as generated by theme_links().
 */
.links--inline {
  *zoom: 1;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.links--inline:after {
  content: "";
  display: table;
  clear: both;
}
.links--inline li {
  float: left;
  /* LTR */
  margin-right: 1em;
  /* LTR */
}
.links--inline li > a {
  display: block;
}

/**
 * @file
 * Theme styles for markup generated by theme_menu_local_tasks().
 */
/* Tabs */
.tabs a {
  background-color: #eee;
  text-decoration: none;
}
.tabs a.active {
  background-color: #ccc;
}
.tabs a:hover, .tabs a:focus {
  background-color: #bbb;
}

/* Primary Tabs */
.tabs--primary {
  margin-bottom: 1em;
  border-bottom: 1px solid #bbb;
}
.tabs--primary a {
  padding: 0.3em 0.8em;
}

/* Secondary Tabs */
.tabs--secondary a {
  padding: 0.2em 0.5em;
  margin: 0.4em 0;
  font-size: 0.9em;
}
/**
 * @file
 * Theme for for system messages.
 */
/* Message */
.messages {
  margin: 6px 0;
  padding: 10px 10px 10px 50px;
  /* LTR */
  background-position: 8px 8px;
  /* LTR */
  background-repeat: no-repeat;
  border: 1px solid;
}
.messages ul {
  margin: 0 0 0 1em;
  /* LTR */
  padding: 0;
}
.messages li {
  list-style-image: none;
}

/* Status Messages */
.messages--status {
  background-image: url('sites/all/themes/omega/omega/images/misc/message-24-ok.png?1382488163');
  border-color: #be7;
}

.messages--status,
tr.ok {
  background-color: #f8fff0;
}

.messages--status,
.ok {
  color: #234600;
}

/* Warning Messages */
.messages--warning {
  background-image: url('sites/all/themes/omega/omega/images/misc/message-24-warning.png?1382488163');
  border-color: #ed5;
}

.messages--warning,
tr.warning {
  background-color: #fffce5;
}

.messages--warning,
.warning {
  color: #333;
}

/* Error Messages */
.messages--error {
  background-image: url('sites/all/themes/omega/omega/images/misc/message-24-error.png?1382488163');
  border-color: #ed541d;
}

.messages--error,
tr.error {
  background-color: #fef5f1;
}

.messages--error,
.error {
  color: #333;
}

.error .error {
  color: #8c2e0b;
}
/**
 * @file
 * System wide theme styles.
 */
/**
 * @file
 * Basic styling for common HTML elements.
 */
/* Fieldsets */
fieldset {
  margin-bottom: 1em;
}

/* Tables */
table {
  border-collapse: collapse;
}

th {
  padding-right: 1em;
  /* LTR */
  background-color: #bbb;
  text-align: left;
  /* LTR */
}

tr.even,
tr.odd {
  background-color: #eee;
}

tr.odd {
  background-color: #ddd;
}

/**
 * @file
 * Theme for autocomplete.
 *
 * @see autocomplete.js
 */
#autocomplete {
  background: #fff;
  border: 1px solid;
  color: #000;
}
#autocomplete .selected {
  background: #0072b9;
  color: #fff;
}

/**
 * @file
 * Theme for collapsible fieldsets.
 *
 * @see collapse.js
 */
html.js fieldset.collapsible .fieldset-legend {
  padding-left: 15px;
  /* LTR */
  background: url('sites/all/themes/omega/omega/images/misc/menu-expanded.png?1382488163') 5px 65% no-repeat;
  /* LTR */
}

html.js fieldset.collapsed {
  border-bottom-width: 0;
  border-left-width: 0;
  border-right-width: 0;
}
html.js fieldset.collapsed .fieldset-legend {
  background-image: url('sites/all/themes/omega/omega/images/misc/menu-collapsed.png?1382488163');
  /* LTR */
  background-position: 5px 50%;
  /* LTR */
}

.fieldset-legend .summary {
  margin-left: 0.5em;
  color: #999;
  font-size: 0.9em;
}

/**
 * @file
 * Theme for the tabledrag behavior.
 *
 * @see tabledrag.js
 */
.drag {
  background-color: #fffff0;
}

.drag-previous {
  background-color: #ffd;
}

/**
 * @file
 * Theme for the progress behavior.
 *
 * @see progress.js
 */
.progress {
  font-weight: bold;
}
.progress .bar {
  background: #ccc;
  border-color: #666;
  margin: 0 0.2em;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.progress .filled {
  background: #0072b9 url('sites/all/themes/omega/omega/images/misc/progress.gif?1382488163');
}

/**
 * @file
 * Theme for the tableselect behavior.
 *
 * @see tableselect.js
*/
.selected td {
  background: #ffc;
}

.checkbox,
.checkbox {
  text-align: center;
}

/**
 * @form
 * Theme for markup generated by Form API.
 */
/* Generic Form Items. */
.form-item,
.form-actions {
  margin-bottom: 1em;
}
.form-item label,
.form-actions label {
  display: block;
  font-weight: bold;
}
.form-item .description,
.form-actions .description {
  font-size: 0.85em;
}

/* Checkboxes and Radios */
.form-checkboxes .form-item,
.form-radios .form-item {
  margin-bottom: 0.4em;
}
.form-checkboxes .description,
.form-radios .description {
  margin-left: 2.4em;
}

label.option {
  display: inline;
  font-weight: normal;
}

.form-checkbox,
.form-radio {
  vertical-align: middle;
}

/* Errors */
.marker,
.form-required {
  color: #f00;
}

input.error,
textarea.error,
select.error {
  border: 2px solid red;
}

/* Table Form Items */
tr .form-item {
  margin-top: 0;
  margin-bottom: 0;
  white-space: nowrap;
}

/* Inline Items */
.container-inline .form-actions,
.container-inline.form-actions {
  margin-top: 0;
  margin-bottom: 0;
}

/**
 * @file
 * Theme for the markup generated by theme_tablesort_indicator().
 */
th.active img {
  display: inline;
}

td.active {
  background-color: #ddd;
}

/**
 * @file
 * Theme for more links.
 */
.more-link {
  display: block;
  text-align: right;
  /* LTR */
}

/**
 * @file
 * Theme for markup generated by theme_pager().
 */
.pager {
  clear: both;
  padding: 0;
  text-align: center;
}

.pager__item {
  display: inline;
  padding: 0.5em;
  background-image: none;
  list-style-type: none;
}

.pager__item--current {
  font-weight: bold;
}
/**
 * @file
 * Main stylesheet for Date module.
 */

/* Force start/end dates to float using inline-block, where it works, otherwise inline. */
.container-inline-date {
  clear: both;
}
.container-inline-date .form-item {
  float: none;
  margin: 0;
  padding: 0;
}
.container-inline-date > .form-item {
  display: inline-block;
  margin-right: 0.5em; /* LTR */
  vertical-align: top;
}
fieldset.date-combo .container-inline-date > .form-item {
  margin-bottom: 10px;
}
.container-inline-date .form-item .form-item {
  float: left; /* LTR */
}
.container-inline-date .form-item,
.container-inline-date .form-item input {
  width: auto;
}
.container-inline-date .description {
  clear: both;
}

.container-inline-date .form-item input,
.container-inline-date .form-item select,
.container-inline-date .form-item option {
  margin-right: 5px; /* LTR */
}

.container-inline-date .date-spacer {
  margin-left: -5px; /* LTR */
}

.views-right-60 .container-inline-date div {
  margin: 0;
  padding: 0;
}

.container-inline-date .date-timezone .form-item {
  clear: both;
  float: none;
  width: auto;
}

/* The exposed Views form doesn't need some of these styles */
.container-inline-date .date-padding {
  float: left;
}
fieldset.date-combo .container-inline-date .date-padding {
  padding: 10px;
}
.views-exposed-form .container-inline-date .date-padding {
  padding: 0;
}

/* Fixes for date popup css so it will behave in Drupal */
#calendar_div,
#calendar_div td,
#calendar_div th {
  margin: 0;
  padding: 0;
}
#calendar_div,
.calendar_control,
.calendar_links,
.calendar_header,
.calendar {
  border-collapse: separate;
  margin: 0;
  width: 185px;
}

.calendar td {
  padding: 0;
}

/* formatting for start/end dates in nodes and views */
span.date-display-single {
}
span.date-display-start {
}
span.date-display-end {
}

.date-prefix-inline {
  display: inline-block;
}

.date-clear {
  clear: both;
  display: block;
  float: none;
}

.date-no-float {
  clear: both;
  float: none;
  width: 98%;
}

.date-float {
  clear: none;
  float: left;
  width: auto;
}

/* Add space between date option checkboxes ('All day' & 'Collect End Date') */
.date-float .form-type-checkbox{
  padding-right: 1em;
}

/* Add space between the date and time portions of the date_select widget. */
.form-type-date-select .form-type-select[class*=hour] {
  margin-left: .75em; /* LTR */
}

.date-container .date-format-delete {
  float: left;
  margin-top: 1.8em;
  margin-left: 1.5em;
}
.date-container .date-format-name {
  float: left;
}
.date-container .date-format-type {
  float: left;
  padding-left: 10px;
}

.date-container .select-container {
  clear: left;
  float: left;
}

/* Calendar day css */
div.date-calendar-day {
  background: #F3F3F3;
  border-top: 1px solid #EEE;
  border-left: 1px solid #EEE;
  border-right: 1px solid #BBB;
  border-bottom: 1px solid #BBB;
  color: #999;
  float: left;
  line-height: 1;
  margin: 6px 10px 0 0;
  text-align: center;
  width: 40px;
}

div.date-calendar-day span {
  display: block;
  text-align: center;
}
div.date-calendar-day span.month {
  background-color: #B5BEBE;
  color: white;
  font-size: .9em;
  padding: 2px;
  text-transform: uppercase;
}
div.date-calendar-day span.day {
  font-size: 2em;
  font-weight: bold;
}
div.date-calendar-day span.year {
  font-size: .9em;
  padding: 2px;
}

.date-form-element-content-multiline {
  padding: 10px;
  border: 1px solid #CCC;
}
/* Admin styling */
.form-item.form-item-instance-widget-settings-input-format-custom,
.form-item.form-item-field-settings-enddate-required {
  margin-left: 1.3em;
}

#edit-field-settings-granularity .form-type-checkbox {
  margin-right: .6em; /* LTR */
}

.date-year-range-select {
  margin-right: 1em;
}
/**
 * @file
 * Aggregator theme CSS.
 */
.feed-source .feed-icon {
  float: right;
  /* LTR */
  display: block;
}
/**
 * @file
 * Comment module look and feel styling.
 */
.indented {
  margin-left: 25px;
  /* LTR */
}

.node-unpublished {
  background-color: #fff4f4;
}
.preview .node {
  background-color: #ffffea;
}
td.revision-current {
  background: #ffc;
}
/**
 * @file
 * Styling for contextual links behaviour and structure.
 */
/**
 * Field display.
 */
.field__label {
  font-weight: bold;
}

.field--label-inline .field__label,
.field--label-inline .field__items {
  float: left;
  /* LTR */
}
.views-exposed-form .views-exposed-widget {
  float: left; /* LTR */
  padding: .5em 1em 0 0; /* LTR */
}

.views-exposed-form .views-exposed-widget .form-submit {
  margin-top: 1.6em;
}

.views-exposed-form .form-item,
.views-exposed-form .form-submit {
  margin-top: 0;
  margin-bottom: 0;
}

.views-exposed-form label {
  font-weight: bold;
}

.views-exposed-widgets {
  margin-bottom: .5em;
}

/* table style column align */
.views-align-left {
  text-align: left;
}
.views-align-right {
  text-align: right;
}
.views-align-center {
  text-align: center;
}

/* Remove the border on tbody that system puts in */
.views-view-grid tbody {
  border-top: none;
}

.view .progress-disabled {
  float: none;
}
/**
 * @file
 * Search module theme.
 */
/**
 * Search Results
 */
.search-result__snippet {
  padding-left: 1em;
  /* LTR */
}

.search-result__info {
  font-size: 0.85em;
}

/**
 * Advanced Search Form
 */
.search-advanced .criterion {
  float: left;
  /* LTR */
  margin-right: 2em;
  /* LTR */
}
.search-advanced .action {
  float: left;
  /* LTR */
  clear: left;
  /* LTR */
}
/**
 * @file
 * Base styles for the user module.
 */
div.password-confirm {
  visibility: hidden;
}
