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


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

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

.node-promoted /* A node that has been promoted to the front page */ {
}

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

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

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

/* Zebra stripe node lists */
.node.odd {
}

.node.even {
}




/* 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.
 */
.node-page /* Page content node */ {
}

.node-article /* Article content node */ {
}

.node-book /* Book content node */ {
}

.node-forum /* Forum content node */ {
}

.node-poll /* Poll content node */ {
}

/*h1.node-title  Node title  {
	margin-top:20px;
}*/


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

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

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

.node .submitted .username /* The "posted by" user */ {
}

.node .submitted  time /* The "posted by" datetime wrapper */ {
}

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

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