/**
 * This CSS has to be defined in a file separate from the theme (i.e., not in
 * style.css) because the CSS has to be loaded in the admin theme used within
 * the views UI.
 *
 * The CSS changes here are applied to ALL elements in the exposed form whenever
 * the CSS is loaded; the changes are NOT specific to the aircraft_details widget.
 * The association with the widget is established by the fact that this CSS is
 * only loaded when the widget is displayed.
 *
 * The changes are being made to the entire exposed form based on cases where
 * there are multiple widgets in the form -- it looks best if all elements are
 * switched to inline-labels, not just one of the elements.
 *
 * If there is any future need to switch this to being specific to the
 * aircraft_details widget, an id needs to manually assigned to the widget
 * container, and that id can then be used in the CSS selectors.
 * 
 */
div#main div#content.wide_right div.views-exposed-form .views-exposed-widget {
  width:100%;
}
.views-exposed-form .views-exposed-widget label {
  float: left;
  padding-right: 5px;
}
.views-exposed-form .views-widget .form-item {
  display: inline-block;
}
.aircraft-details-multilinks {
  float:right;
  text-align: right;
}
/* Override the wide top margin on the apply button -- which
   is only there to make the button line up with other
   elements when they're all in a single row (and other elements
   have a label) */
div.views-exposed-form .views-exposed-widget .form-submit {
  margin-top:0px;
}