/* $Id: nodes.css,v 1.3 2009/05/03 09:45:49 johnalbin Exp $ */

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


.node /* Node wrapper */
{
  margin-bottom: 20px;
}

.node-inner /* Additional wrapper for 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, /* The word "Unpublished" displayed underneath the content. */
.comment-unpublished div.unpublished
{
  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-mine /* A node created by the current user */
{
}

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

body.no-sidebars .node-teaser, body.no-sidebars div.panel-pane div.node-teaser
{
  background-image: url(images/nodefooter.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  padding-bottom: 40px;
}
body.no-sidebars .node-teaser.sticky, body.no-sidebars div.panel-pane div.node-teaser.sticky
{
  background-image: none;
  background-color: #f2f2f2;
  border: 1px solid #bbb;
  padding: 0.8em;
}
/* 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 */
{
  font-size: 2.3em;
  line-height: 1.1em;
  margin: 0;
}

.node h2.title a
{
  text-decoration: none;
}

.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, .pane-taxonomie .views-field-tid, .pane-republications .views-field-tid  /* Wrapper for submitted and terms data */
{
  height: 16px;
  width: 100%;
  line-height: 16px;
  margin-bottom: 0.5em;
}

.node .submitted /* The "posted by" information */
{
  float: left;
  font-size: 80%;
  color: #888;
}

.node .submitted div
{
  display: table-cell;
  background-position: top left;
  background-repeat: no-repeat;
  padding-left: 19px;
}

.node .submitted .date
{
  background-image: url(images/date.png);
}

.node .submitted .author
{
  border-left: 8px solid transparent;
  background-image: url(images/user.png);
}

.node .submitted a:link
{
  color: #888;
}

.node .terms, .view-taxonomie, .view-taxonomie-regions  /* Node terms (taxonomy) */
{
  background-position: top left;
  background-repeat: no-repeat;
  padding-left: 20px;
  margin-left: 16px;
}

.node .terms, .view-taxonomie {
  margin-top: 1em;
  background-image: url(images/tag.png);
}

.view-taxonomie-regions {
  background-image: url(images/tag_geo.png);
}

.node .terms li.last:after
{
  content: none;
}

.node .terms li:after
{
  content: ",";
}

.node .content, .pane-node-body .pane-content, .pane-republications .pane-content /* Node's content wrapper */
{
  margin: 16px 1.0em;
  overflow: hidden;
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */
{
  font-size: 80%;
}

.node ul.links li.comment_add a, .node ul.links li.comment_comments a
{
  background-image: url(images/comment.gif);
  background-position: top left;
  background-repeat: no-repeat;
  padding-left: 20px;
}

.node .read-more a
{
  color: #555;
  font-weight: bold;
  padding-left: 0.3em;
}

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