/**
 * @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
 */
/*
 * Field wrappers when the Fences module is enabled.
 */
/* line 21, ../sass/fields.scss */
.field-label {
  /* The optional label for a field. */
}

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

/* line 27, ../sass/fields.scss */
.field-name-field-image {
  float: left;
  margin: 0 0.5em 0.5em 0;
}
/* line 31, ../sass/fields.scss */
.field-name-field-image img {
  border: 1px solid darkgreen;
  padding: 2px;
}

/* line 38, ../sass/fields.scss */
.view-mode-teaser .field-name-field-image {
  margin: 0 0.5em 0.25em 0;
}
/* line 41, ../sass/fields.scss */
.view-mode-teaser .field-name-field-image a {
  display: block;
  font-size: 1px;
  line-height: 1px;
}
/* line 49, ../sass/fields.scss */
.view-mode-teaser .field-name-title a {
  text-decoration: none;
  color: darkgreen;
}
/* line 53, ../sass/fields.scss */
.view-mode-teaser .field-name-title a:hover {
  text-decoration: underline;
}
/* line 59, ../sass/fields.scss */
.view-mode-teaser .field-type-text-with-summary {
  height: 132px;
  overflow: hidden;
}
/* line 62, ../sass/fields.scss */
.view-mode-teaser .field-type-text-with-summary p {
  font-size: 0.938em;
  line-height: 1.5em;
}
/* line 68, ../sass/fields.scss */
.view-mode-teaser .field-name-node-link {
  float: left;
  margin-right: 12px;
  font-weight: bold;
}

/* line 76, ../sass/fields.scss */
.field-name-field-links {
  float: left;
  font-weight: bold;
  margin-right: 12px;
}

/* line 82, ../sass/fields.scss */
.field-name-field-categoria {
  clear: both;
  float: right;
  list-style: none;
  height: 24px;
  margin: 0.3em 0;
}
/* line 89, ../sass/fields.scss */
.field-name-field-categoria li {
  float: left;
  vertical-align: top;
}
/* line 94, ../sass/fields.scss */
.field-name-field-categoria a {
  background-color: darkgreen;
  color: white;
  text-decoration: none;
  padding: 0 4px;
  margin-left: 4px;
}

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

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

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