/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */
/* line 9, ../sass/nodes.scss */
.node {
  /* Node wrapper */
}
/* line 11, ../sass/nodes.scss */
.preview .node {
  /* Preview of the content before submitting new or updated content */
  /* background-color: #ffffea; */
  /* Drupal core uses a #ffffea background */
}
/* line 15, ../sass/nodes.scss */
.node .node-title {
  /* Node title */
}
/* line 18, ../sass/nodes.scss */
.node .user-picture {
  /* The picture of the node author */
}
/* line 21, ../sass/nodes.scss */
.node .submitted {
  /* The "posted by" information */
}
/* line 24, ../sass/nodes.scss */
.node .content {
  /* Node's content wrapper */
}
/* line 27, ../sass/nodes.scss */
.node ul.links {
  /* Node links. See also the ul.links declaration in the pages.css. */
}

/* line 32, ../sass/nodes.scss */
.node-promoted {
  /* A node that has been promoted to the front page */
}

/* line 35, ../sass/nodes.scss */
.node-sticky {
  /* A sticky node (displayed before others in a list) */
}

/* line 38, ../sass/nodes.scss */
.node-by-viewer {
  /* A node created by the current user */
}

/* line 41, ../sass/nodes.scss */
.node-teaser {
  /* A node displayed as teaser */
}

/*
 * All nodes are given a node-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-my-custom-type" class.
 */
/* line 50, ../sass/nodes.scss */
.node-page {
  /* Page content node */
}

/* line 53, ../sass/nodes.scss */
.node-article {
  /* Article content node */
}

/* line 56, ../sass/nodes.scss */
.node-unpublished {
  /* Unpublished nodes */
  /* background-color: #fff4f4; */
  /* Drupal core uses a #fff4f4 background */
}

/**** Attached images style ************************************/
/* line 63, ../sass/nodes.scss */
.page-node .field-name-field-image {
  float: right;
  padding: 0px 0px 5px 5px;
}
/* line 66, ../sass/nodes.scss */
.page-node .field-name-field-image .field-item {
  margin-bottom: 1em;
}
/* line 70, ../sass/nodes.scss */
.page-node #back_to {
  text-align: right;
}
