/**
 * @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) */ {
  background: #F9F9F9;
background: rgba(0, 0, 0, 0.024);
border: 1px solid #D3D7D9;
  /*-webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 5px 5px 5px #888;
  -webkit-box-shadow: 5px 5px 5px #888;
  box-shadow: 5px 5px 5px #888;
  filter: progid:DXImageTransform.Microsoft.Shadow(color=#000000, direction='135', strength='5');
  -ms-filter: "progid:DXImageTransform.Microsoft.Shadow(color=#000000, direction='135', strength='5')";*/
}
.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-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 */ {
  margin: 1em 0 1em 0;
  padding: 0.5em;
  border-bottom: 1px solid #D3D7D9;
}

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

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

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

.node .user-picture /* The picture of the node author */ {
  float: left;
  margin: 1px 5px 0 0;
}

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

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

.node ul.links /* Node links. See also the ul.links declaration in the pages.css. */ {
}
.node .group-sidebar {
  float: right;
  width: 200px;
  background: rgb(0,97,114);
  margin: 0.5em;
  padding: 1em;
}

.node .group-sidebar fieldset legend {
  font-size: 1em;
}
.node .group-sidebar .field-item,
.node .group-sidebar .field-label {
  font-size: 1em;
  line-height: 1.2em;
  margin-bottom: 0.2em;
}
.node .group-sidebar .jp-playlist{
}
