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


.node /* Node wrapper */ {
}

.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-unpublished /* Unpublished nodes */ {
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

/* The word "Unpublished" displayed underneath the content. */
.node-unpublished div.unpublished,
.comment-unpublished div.unpublished {
  height: 0;
  overflow: visible;
  color: #d8d8d8;
  font-size: 75px;
  line-height: 1;
  font-family: balance, "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 */ {
}

/* 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 */ {
	/* color: black; */
}

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

h2.node-title /* Node title */ , h2.node-title a {
	/* color: black; */
	font-variant: small-caps;
	font-size: 1.1em;
}

h2.node-title a:hover {
	text-decoration: underline;
}

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

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

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

.node .content a {
	text-decoration: underline;
}

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

.node p {
	margin-top: 0px;
}

.node a.translation-link {
	display: none;
}

/* Journals */
.node-journal fieldset.group-description.collapsed {
        margin-bottom: 0px;
	margin-top: 5px;
	padding-bottom: 0px;
}

body.node-type-journal div#block-system-main {
	margin-bottom: 0px;
}

body.node-type-journal #content .section {
	padding-bottom: 5px;
	height: 378px;
}

/* Journal editions */
div.node-journal-edition h3.ui-accordion-header {
	padding-left: 25px;
	font-size: 1.3em;
}

div.node-journal-edition div.ui-accordion-content {
	padding: 1em 1em;
}

div.node-journal-edition div.field-group-accordion-wrapper {
	margin-top: 5px;
	margin-bottom: 10px;
}

.node-journal-edition.view-mode-teaser.ds-2col > .group-left {
  width: 25%;
}
.node-journal-edition.view-mode-teaser.ds-2col > .group-right {
  width: 75%;
}

.node-newsitem .field-name-field-image {
  float: right;
  padding-left: 20px;
}