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


.node /* Node wrapper */ {   padding: 30px;
}
.node .field-type-image img{padding: 1em 0 1em 0;}

.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 */ {
  padding: 2em;
}
.node-teaser .field-type-image img{
float: left;
padding: 1em;
}
/* 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 */ { background: white;
}


.node-article, .node-book {    background: white url("../images/grunge_linie.gif") repeat-x top left;
}   /* Article content node */
.node-sticky /* A sticky node (displayed before others in a list) */ {
 background: #fff  url("../images/node_hg.gif") no-repeat top right;
}


h2.node-title /* Node title */ {color: #006;
}
h2.node-title a /* Node title */ {  color: #006; 
}
h2.node-title a:visited /* Node title */ {  color: #99c; 
}
.marker /* "New" or "Updated" marker for content that is new or updated for the current user */ {
  color: #c00;
}

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

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

.node .submitted /* The "posted by" information */ { color: #888; font-size: x-small;padding: 0.5em;
}

.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 */
}
.node-readmore {
float: right;
background: #fff url("../images/readmore_hg.gif") no-repeat center right;
margin-top: 0.5em;

}