/**
 * @file
 * Field Styling
 *
 * The Fences module allows site builders to pick the semeantic HTML5 element
 * for each field while editing the field's settings. There's no way a theme
 * can ever know which element to use for the fields on your site, so Zen
 * just uses lets Drupal core or Fences decide. Since you DO NOT want 3 wrapping
 * divs around every field (do you?), we highly recommend Fences.
 *
 * http://drupal.org/project/fences
 */
/* line 16, ../sass/fields.scss */
.field-name-field-attachment {
  float: right;
  width: 200px;
  border: 1px solid #BBE7F4;
  background: #DEF3F9;
  color: #00B0EA;
  margin-left: 15px;
  margin-bottom: 15px;
  padding: 8px;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
}
/* line 28, ../sass/fields.scss */
.field-name-field-attachment .field-item {
  position: relative;
  padding-bottom: 5px;
}
/* line 33, ../sass/fields.scss */
.field-name-field-attachment a {
  color: #00B0EA;
  display: block;
  padding-left: 20px;
}
/* line 39, ../sass/fields.scss */
.field-name-field-attachment img.file-icon {
  position: absolute;
  top: 1px;
  left: 0;
}

/*
 * Field wrappers when the Fences module is enabled.
 */
/* line 51, ../sass/fields.scss */
.field-label {
  /* The optional label for a field. */
}

/* line 54, ../sass/fields.scss */
.field-FIELDNAME {
  /* Underscores in field name are replaced with dashes. */
}

/*
 * If you don't use the Fences module, that's fine. Really. I think. Just use
 * these selectors instead:
 */
/* line 63, ../sass/fields.scss */
.field {
  /* Wrapper for any field. */
}

/*
 * Field types (Core)
 */
/*
 * Field types (Contrib)
 */
/* line 113, ../sass/fields.scss */
.field-type-datetime {
  /* Always use "datetime" when creating new CCK date fields. "date" and "datestamp" are legacy types. */
}

/*
 * Named fields
 */
/* line 135, ../sass/fields.scss */
.field-name-field-FIELDNAME {
  /* Underscores in field name are replaced with dashes. */
}
