/**
 * @file
 * Node Styling
 *
 * Style anything that isn't in the $content variable.
 */
/* line 11, ../sass/nodes.scss */
.node {
  /* Node wrapper */
}
/* line 13, ../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 17, ../sass/nodes.scss */
.node .node-title {
  /* Node title */
  font-family: "Noticia Text", Times, Georgia, serif;
  color: #0048ff;
  line-height: 1.2em;
  margin-bottom: 5px;
}
/* line 22, ../sass/nodes.scss */
.node .node-title a {
  color: #0048ff;
}
/* line 26, ../sass/nodes.scss */
.node .node-title a:visited {
  color: #0048ff;
}
/* line 31, ../sass/nodes.scss */
.node img.icon,
.node img.picasa {
  float: left;
  margin-right: 10px;
}
/* line 36, ../sass/nodes.scss */
.node img.central-icon,
.node img.central-picasa {
  margin: 0 auto;
  display: block;
}
/* line 41, ../sass/nodes.scss */
.node div.booking-form {
  float: right;
  margin-left: 10px;
  padding: 5px;
  border: 1px solid black;
  background-color: #fff;
  text-align: center;
}
/* line 50, ../sass/nodes.scss */
.node ol, .node ul {
  overflow: hidden;
}
/* line 54, ../sass/nodes.scss */
.node .user-picture {
  /* The picture of the node author */
}
/* line 57, ../sass/nodes.scss */
.node .submitted {
  /* The "posted by" information */
  margin: 0px;
  font-size: 80%;
  text-transform: uppercase;
  color: #444;
}
/* line 62, ../sass/nodes.scss */
.node .submitted a {
  color: #444;
}
/* line 67, ../sass/nodes.scss */
.node .content {
  /* Node's content wrapper */
}
/* line 70, ../sass/nodes.scss */
.node ul.links {
  /* Node links. See also the ul.links declaration in the pages.css. */
  float: right;
  margin: 0px;
}
/* line 73, ../sass/nodes.scss */
.node ul.links a {
  font-size: 90%;
}

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

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

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

/* line 89, ../sass/nodes.scss */
.node-teaser {
  /* A node displayed as teaser */
}

/* line 92, ../sass/nodes.scss */
.node-readmore {
  font-size: 120%;
}

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

/* line 105, ../sass/nodes.scss */
.node-article {
  /* Article content node */
  padding: 5px 0px;
  border-bottom: 1px solid #ddd;
}
/* line 108, ../sass/nodes.scss */
.node-article p:first-child {
  margin-top: 0px;
}

/* line 113, ../sass/nodes.scss */
.node-unpublished {
  /* Unpublished nodes */
  /* background-color: #fff4f4; */
  /* Drupal core uses a #fff4f4 background */
}
/* line 116, ../sass/nodes.scss */
.node-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;
}
/* line 55, ../sass/_custom.scss */
.lt-ie8 .node-unpublished p.unpublished > * {
  position: relative;
}
