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

.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 */
}

/* 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.
 */
footer.node__meta /* The "posted by" information */ {
  display: none;
}

.node .content /* Node's content wrapper */ {
  margin-top: 0;
  margin-bottom: 1em;
}

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

.not-front .node h2 {
  background-color: #336699;
  color: white;
  font-size: 13px;
  line-height: 15px;
  padding: 5px 3px;
  margin: 5px 0;
}

/* Various poster contest pages */

.node .section {
  padding: 5px 0 15px 5px;
  clear: both;
}

.node .half-width ul {
  padding-left: 1.5em;
}

.node .center-left-col {
  float: left;
  display: inline;
}

.node .center-right-col {
  float: right;
  display: inline;
}

.node .half-width {
  width: 49%;
}

.heading {
  line-height: 1.2em;
  color: #593F9A;
}
