/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */

.node /* Node wrapper */ {
}

/*
 * Content Styling
 */

/* ad-hoc image captions */

.image-caption-container {
  background: #E9E9E9;
  padding: 4px;
}
.image-caption {
  color: #595959;
  font-style: italic;
  font-family: sans;
  text-align: center;
}

/* Main Image caption */

div.fieldgroup.group-main-image {
  float: left;
}

div.fieldgroup {
  margin: 0; 
}

div.fieldgroup.group-main-image div.content {
  border-radius: 2px;
  margin: 0 15px 15px 0;
  padding: 2px;
}

div.fieldgroup.group-main-image div.content div.field-field-image-caption {
  text-align: center;
  color: #6F6F6F;
  font-style: italic;
  font-size: 0.9em;
}

/* People Image */

.node-type-people div.fieldgroup.group-main-image div.content div.field-field-image-caption {
  max-width: 300px;
}

.node-type-people div.fieldgroup.group-main-image div.content div img {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Electronic Newsletter Article */

.node-type-electronic-newsletter-article #first {
  font-size: 6em;
  float: left;
  line-height: 0.5em;
  padding: 0.1em 0;
  font-family: "times new roman";
}

/*
 * General Styling
 */

.node-sticky /* A sticky node (displayed before others in a list) */ {
}

.node-unpublished /* Unpublished nodes */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.node-unpublished div.unpublished,
.comment-unpublished div.unpublished /* The word "Unpublished" displayed underneath the content. */ {
  height: 0;
  overflow: visible;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: Impact, "Arial Narrow", Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  word-wrap: break-word; /* A very nice CSS3 property */
}

.node-by-viewer /* A node created by the current user */ {
}

.node-teaser /* A node displayed as teaser */ {
}

/* All nodes are given a node-type-FOO class that describes the type of
 * content that it is. If you create a new content type called
 * "my-custom-type", it will receive a "node-type-my-custom-type" class.
 */
.node-type-page /* Page content node */ {
}

.node-type-story /* Story content node */ {
}

.node h2.title /* Node title */ {
}

.marker /* "New" or "Updated" marker for content that is new or updated for the current user */ {
  color: #c00;
}

.node .picture /* The picture of the node author */ {
}

.node.node-unpublished .picture,
.comment.comment-unpublished .picture {
  position: relative; /* Otherwise floated pictures will appear below the "Unpublished" text. */
}

.node .meta /* Wrapper for submitted and terms data */ {
  font-size: 0.8em;
}

.node .submitted /* The "posted by" information */ {
}

.node .terms /* Node terms (taxonomy) */ {
  font-size: 0.9em;
}

/* Newsletter Article Terms */

.node-type-electronic-newsletter-article .terms {
  font-size: 0.9em;
}

.node-type-electronic-newsletter-article .terms a {
  color: #FF8F0F;
  padding: 0 0.5em;
}

.node-type-electronic-newsletter-article .terms .first a {
  float: none;
  color: #000000;
  padding: 0;
}

.node-type-electronic-newsletter-article .terms li.first {
  padding: 0 1em 0 0;
}

.node .content /* Node's content wrapper */ {
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
}

.preview .node /* Preview of the content before submitting new or updated content */ {
  /* background-color: #ffffea; */ /* Drupal core uses a #ffffea background */
}

/*
 * Attachments
 * 
 */

table#attachments {
  font-size: 0.8em;
}
