/**
 * @file
 * Comment Styling
 */


#comments /* Wrapper for the list of comments and its title */ {
  margin: 1.5em 0;
  background-color:#ececec;
  padding-bottom:30px;
}
#comments,
#comments fieldset {

}

#comments .form-item label {
  font-weight:normal;
  font-size:12px;
}

#comments .form-submit {
  border:1px solid #d1d1d1;
  background-color:#fff;
  color:#32547E;
  border-radius:3px;
  font-size:13px;
  cursor:pointer;
}

#comments #edit-submit {
  margin-right:20px;
}

#comments #edit-actions {
  text-align:right;
}
#comments h2.title /* Heading for the list of comments */ {
  padding-left:20px;
  color:#32547E;
  font-size:15px;
  margin-bottom:20px;
}
#comments .form-item, #comment .form-actions {
    margin-bottom: 10px;
    margin-top: 0;
}
#comments h2.comment-form /* Heading for the comment form */ {
   color:#32547E;
   background-color:#c4c4c4;
   font-size:16px;
   padding-left:8px;
   height:28px;
   line-height:28px;
   margin-bottom:0;
}
#comments #comment-form,
#comments #comment-form fieldset {
  font-family:Helvetica, Arial, sans-serif;
  padding:20px;
}

.comment /* Wrapper for a single comment */ {
  padding:0 20px;
}

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

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

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

.new /* "New" marker for comments that are new for the current user */ {
  color: #c00;
}

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

.comment .submitted /* The "posted by" information */ {
  width:115px;
  float:left;
  font-family:Helvetica, Arial, sans-serif;
  line-height:1.3em;

}
.comment .submitted .author {
  font-size:12px;
  font-weight:bold;
}
.comment .submitted .time-created,
.comment .submitted .created {
  font-size:11px;
  color:#545454;
}
.comment .content /* Comment's content wrapper */ {
  width:412px;
  float:left;
}

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

.comment ul.links /* Comment links. See also the ul.links declaration in the pages.css. */ {
  display:block;
}

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

.comment-disclaimer {
  background-color:#c4c4c4;
  color:#333;
  font-family:Helvetica, Arial, sans-serif;
  font-size:12px;
  height:20px;
  padding-left:20px;
  margin-bottom:20px;
}

.comment .divider {
  border-top:1px solid #d1d1d1;
  border-bottom:none;
  border-left:none;
  border-right:none;
  margin:30px 80px 40px 80px;
  display:block;
}

.comment.last .divider {
  display:none;
}