/**
 * @file
 * Field Styling
 */


.field /* Wrapper for any field. */ {
}

/*
 * Field types (Core)
 */
.field-type-text {
}

.field-type-text-long {
}

.field-type-text-with-summary {
}

.field-type-image {
}

.field-type-file {
}

.field-type-taxonomy-term-reference {
}

.field-type-number-integer {
}

.field-type-number-decimal {
}

.field-type-number-float {
}

.field-type-list-text {
}

.field-type-list-boolean {
}

.field-type-list-integer {
}

.field-type-list-float {
}

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

.field-type-node-reference {
}

.field-type-user-reference {
}


/*
 * Named fields
 */
.field-name-body {
}

.field-name-field-image {
}

.field-name-field-tags {
}

.field-name-field-FIELDNAME /* Underscores in field name are replaced with dashes. */ {
}

.field-name-field-attachment .field-label,
.field-name-field-attachment-priv .field-label,
.field-name-field-photo .field-label,
.field-name-field-photo-priv .field-label,
.field-name-field-image .field-label {
  color: #DB0A20;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: .5em;
}

.field-name-field-attachment .field-items,
.field-name-field-attachment-priv .field-items {
  margin: 0 0 1em 1em;
}
.field-name-field-attachment .file-icon,
.field-name-field-attachment-priv .file-icon {
  display: none;
}

.field-name-field-photo .field-item,
.field-name-field-photo-priv .field-item {
  margin: 0 30px 30px 0;
  padding: 0;
  width: 200px;
  height: 150px;
  overflow: hidden;
  float: left;
  line-height: 150px;
  background: #EFEFEF;
}

.field-name-field-photo .right,
.field-name-field-photo-priv .right {
  margin: 0 0 30px 0;
}