/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */
/* line 9, ../sass/nodes.scss */
.node {
  /* Node wrapper */
}

/* line 12, ../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 16, ../sass/nodes.scss */
.node .node-title {
  /* Node title */
}

/* line 19, ../sass/nodes.scss */
.node .user-picture {
  /* The picture of the node author */
}

/* line 22, ../sass/nodes.scss */
.node .submitted {
  /* The "posted by" information */
}

/* line 25, ../sass/nodes.scss */
.node .content {
  /* Node's content wrapper */
}

/* line 28, ../sass/nodes.scss */
.node ul.links {
  /* Node links. See also the ul.links declaration in the pages.css. */
}

/* line 31, ../sass/nodes.scss */
.node-promoted {
  /* A node that has been promoted to the front page */
}

/* line 34, ../sass/nodes.scss */
.node-sticky {
  /* A sticky node (displayed before others in a list) */
}

/* line 37, ../sass/nodes.scss */
.node-by-viewer {
  /* A node created by the current user */
}

/* line 40, ../sass/nodes.scss */
.node-teaser {
  /* A node displayed as teaser */
  margin: 0;
  padding: 10px 0 0 0;
  border-bottom: 1px solid #ccc;
}
/* line 45, ../sass/nodes.scss */
.node-teaser .field-name-node-link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-indent: -999em;
}
/* line 53, ../sass/nodes.scss */
.node-teaser .field-name-node-link a:hover {
  background-image: url(../images/bg-white-10.png);
}

/* line 58, ../sass/nodes.scss */
.view-mode-meta {
  margin-bottom: 10px;
}
/* line 60, ../sass/nodes.scss */
.view-mode-meta p {
  margin: 0;
}
/* line 62, ../sass/nodes.scss */
.view-mode-meta p.submitted {
  margin: 0;
  opacity: 0.8;
}
/* line 67, ../sass/nodes.scss */
.view-mode-meta .field-type-datetime {
  line-height: 1.2em;
  color: #536071;
  font-size: 14px;
}
/* line 73, ../sass/nodes.scss */
.view-mode-meta h3 {
  margin: 5px 0;
  font-weight: normal;
}
/* line 74, ../sass/nodes.scss */
.view-mode-meta h3 a {
  font-size: 19px;
  color: #000;
}
/* line 84, ../sass/nodes.scss */
.view-mode-meta .field-type-text-with-summary, .view-mode-meta .views-field-teaser {
  margin-top: 0;
}
/* line 87, ../sass/nodes.scss */
.view-mode-meta .field-name-post-date, .view-mode-meta .views-field-ds-created {
  margin-top: 15px;
  font-size: 12px;
  line-height: 1em;
}

/* line 95, ../sass/nodes.scss */
.node .group-left,
.node .ccs-article-left, .ccs-article-large .group-left,
.ccs-article-large .ccs-article-left {
  width: 83%;
  margin-right: 0;
}
/* line 100, ../sass/nodes.scss */
.node .group-right,
.node .ccs-article-right, .ccs-article-large .group-right,
.ccs-article-large .ccs-article-right {
  width: 15%;
  margin-left: 2%;
}
/* line 106, ../sass/nodes.scss */
.node .ccs-article-left, .ccs-article-large .ccs-article-left {
  float: left;
}
/* line 107, ../sass/nodes.scss */
.node .ccs-article-right, .ccs-article-large .ccs-article-right {
  float: right;
}
/* line 109, ../sass/nodes.scss */
.node .ccs-container, .ccs-article-large .ccs-container {
  display: inline-block;
  width: 100%;
}

/*
 * 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 121, ../sass/nodes.scss */
.node-page {
  /* Page content node */
}

/* line 124, ../sass/nodes.scss */
.node-article {
  /* Article content node */
}

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

/* line 131, ../sass/nodes.scss */
.node-unpublished p.unpublished,
.comment-unpublished p.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 */
}

/* line 145, ../sass/nodes.scss */
.lt-ie8 .node-unpublished p.unpublished > *,
.lt-ie8 .comment-unpublished > * {
  position: relative;
  /* Otherwise these elements will appear below the "Unpublished" text. */
}
