/**
 * @file
 * Comment Styling
 */


.comments { /* Wrapper for the list of comments and its title */
  margin: 1.5em 0;
}

.comments h2.title { /* Heading for the list of comments */
	color: #565656;
	background: #f3e8dc;
}

.comments h2.comment-form { /* Heading for the comment form */
}

.comment { /* Wrapper for a single comment */
	border-bottom: 1px solid #cdcdcc;
}

.comment-preview { /* Preview of the comment before submitting new or updated comment */
  background-color: #ffffea; /* Drupal core will use a #ffffea background. See #1110842 */
}

.comment.new { /* A new comment since the user last viewed the page. */
}

.comment.first { /* The first comment in the list of comments */
}

.comment.last { /* The last comment in the list of comments */
}

.comment.odd { /* An odd-numbered comment in the list of comments */
}

.comment.even { /* An even-numbered comment in the list of comments */
}

.comment-by-anonymous { /* A comment created by an anonymous user */
}

.comment-by-node-author { /* A comment created by the node's author */
}

.comment-by-viewer { /* A comment created by the current user */
}

h3.comment-title { /* Comment title */
}

.comment .new { /* "New" marker for comments that are new for the current user */
  color: #fff;
  margin: 0 3px;
  padding: 0 10px;
  border-radius: 3px;
}
.comment mark.new {
  background-color: #929292;
}

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

.comment .submitted { /* The "posted by" information */
    margin-top: 2px;
    margin-bottom: 2px;
}

.comment .permalink { /* Comment's permalink wrapper */
  text-transform: uppercase;
  font-size: 75%;
  color: #565656; 
}

.comment .user-signature { /* The user's signature */
}

.comment ul.links { /* Comment links. See also the ul.links declaration in the pages.css. */
}
.comment .comment-reply a {
      color: #565656;
}
.comment .comment_forbidden a {
      color: #565656;
}
.comment-title .comment_forbidden a {
        color: #565656;
}

.indented { /* Nested comments are indented */
  margin-left: 30px; /* Drupal core uses a 25px left margin */
}

.comment-unpublished { /* Unpublished comments */
  /* background-color: #fff4f4; */ /* Drupal core uses a #fff4f4 background */
}

.comment-unpublished p.unpublished { /* The word "Unpublished" displayed underneath the content. See also the div.unpublished declaration in the nodes.css. */
}

.node-openpublish-article .links  .comment-add a {
	text-decoration: none;
	padding: 0px 10px 3px 30px;
	background-image: url('../images/comment.png');
	background-repeat: no-repeat;
	background-position: 5px center;
	background-color: #bcb1a5;
	color: #FFF;
	border-radius: 10px;

}

.node-openpublish-article .comment-title .comment-top {
  float: left;
  font-weight: bold;
}

.node-openpublish-article .comment-title {
    background-color: #F3E8DC;
    margin: 2px 0px;
    overflow: hidden;
    padding-top: 3px;
    padding-bottom: 3px;
    clear: both;
}

.node-openpublish-article .comment-title .comment-count {
    background-color: #929292;
    color: #FFF;
    font-size: 11px;
    border-style: solid;
    border-radius: 3px;
    border-color: #929292;
    margin:auto;
}
.node-openpublish-article .comment-title .comment-links {
  float: right;
  font-size: 12px;
}
.node-openpublish-article .comment-title a,
.node-openpublish-article .comments a {
  color: #565656;
  text-decoration: none;
}
.node-openpublish-article .comment-title a:hover,
.node-openpublish-article .comments a:hover {
  color: #565656;
  text-decoration: underline;
}
.node-openpublish-article .comments {
	font-size: 12px;
}

/**
 * Hide comment block Title
 */
.node-openpublish-article .comments h2 {
    display: none;
}

.comments form.comment-form { /* Hide form on article load */
  display: none;
}

/* hide workflow fieldset */
#comment-form #edit-workflow {
  display: none;
}

