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


.node /* Node wrapper */ {
}

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

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

.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 /* Wrapper for submitted and terms data */ {
}

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

.node .terms /* Node terms (taxonomy) */ {
}

.node .content /* Node's content wrapper */ {
}
body.node-type-blog .node>.content {
  margin-top:20px;
}

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Bottom node links */
.node > ul.links {
    line-height: 16px;
    margin-top: 20px;
    padding: 0;
    border-top: 1px dotted #b3b3b3;
    border-bottom: 1px dotted #d1d1d1;
    padding: 9px 0;
}
.node > ul.links li {
    display: block;
    float: right;
    font-size: 10px;
    line-height: 16px;
    list-style: none;
}
.node > ul.links li a {
    color: #b3b3b3;
    font-weight: normal;
}

.view .node-type-press-release .meta {
    display: none;
}

.node-type-press-release .field-type-date .field-label {
    display: none;
}

.node-type-blog {

}
.node-type-blog .field-label{ display: none; }
.node-type-blog .field-field-blog-image{
  float: left;
  margin: 0 1em .25em 0;
}
BODY.node-type-blog .content blockquote {

}
.node-type-blog .full-image-block {
	float: right;
	width: 591px;
}

BODY.node-type-blog .terms ul.links{display: none !important;}
#block-views-Blogs-block_3 .content {padding-top: 0px; margin-top: -15px;}
