/**
 * @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. */
}

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

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

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

/* line 108, ../sass/fields.scss */
#mobile-content-sidebar .field-name-field-file-pdf .field-item {
  background: none;
  padding: 0;
  margin: 0;
}

/* line 113, ../sass/fields.scss */
#mobile-content-sidebar .field-name-field-file-pdf img {
  width: auto;
}

/* line 116, ../sass/fields.scss */
#mobile-content-sidebar .field-name-field-file-pdf a {
  margin: 0;
  padding: 0;
  display: inline;
}

/**
 * Style non-Amazon songs like the Amazon songs.
 * Ideally the same CSS could be used for both, but responsive-sidebars.scss isn't editable,
 * so I'm copying those styles for different selectors here. It'd be nice to fix that in the future.
 */
/* line 128, ../sass/fields.scss */
.view .field-name-field-song-title,
.view .field-name-field-song-artist {
  padding: 0 15px;
}

/* line 131, ../sass/fields.scss */
.view .field-name-field-song-title {
  border-top: 1px solid #DDD;
  padding-top: 3px;
  font-family: "proxima_nova_rgbold", Helvetica, "Nimbus Sans L", sans-serif;
}

/* line 136, ../sass/fields.scss */
.view .field-name-field-song-artist {
  font-family: "proxima_nova_ltbold", Helvetica, "Nimbus Sans L", sans-serif;
  color: #444444;
}

/* line 140, ../sass/fields.scss */
.view .field-name-field-song-link a {
  color: #00a6d9;
  float: right;
  font-style: italic;
  position: relative;
  top: -35px;
  right: 15px;
}

/* line 149, ../sass/fields.scss */
.node-type-story .byline .field {
  margin: auto;
  display: block;
}

/* line 153, ../sass/fields.scss */
.node-type-story .byline a {
  position: relative;
  z-index: 999;
}

/* line 158, ../sass/fields.scss */
.episode-ref {
  font-weight: bold;
  font-style: italic;
}
