/**
 * @file
 * Comment Styling
 */
/* line 10, ../sass/comments.scss */
input:focus, textarea:focus {
  outline: 0;
}

/* line 14, ../sass/comments.scss */
#comment-form {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
/* line 20, ../sass/comments.scss */
#comment-form .form-item {
  margin: 10px 0 3px 0;
  padding: 0;
}
/* line 25, ../sass/comments.scss */
#comment-form textarea {
  resize: none;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px;
  border-radius: 5px 5px 0 0;
  -moz-box-shadow: #DDD 1px 1px 10px;
  -webkit-box-shadow: #DDD 1px 1px 10px;
  box-shadow: #DDD 1px 1px 10px;
  width: 100%;
  height: 120px;
  border: 0;
  padding: 10px;
  color: #737373;
  font-size: 15.0px;
}
/* line 37, ../sass/comments.scss */
#comment-form textarea:focus {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/* line 42, ../sass/comments.scss */
#comment-form .form-submit {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  border: 0;
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0;
  border-radius: 0 0 5px 5px;
  -moz-box-shadow: #DDD 1px 1px 10px;
  -webkit-box-shadow: #DDD 1px 1px 10px;
  box-shadow: #DDD 1px 1px 10px;
  color: #C80000;
  padding: 5px 0;
}
/* line 51, ../sass/comments.scss */
#comment-form .form-submit:hover {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/* line 57, ../sass/comments.scss */
#comments {
  /* Wrapper for the list of comments and its title */
  padding: 10px;
  margin-bottom: 10px;
  background-color: #f2f2f2;
}
/* line 65, ../sass/comments.scss */
#comments h2.comments {
  /* Heading for the list of comments */
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  text-align: center;
  color: #737373;
  margin: 0;
}
/* line 74, ../sass/comments.scss */
#comments ul.pager {
  list-style-type: none;
  background-color: rgba(255, 255, 255, 0.75);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  margin: 0;
}
/* line 81, ../sass/comments.scss */
#comments ul.pager li {
  display: block;
}
/* line 83, ../sass/comments.scss */
#comments ul.pager li a {
  display: block;
  padding: 10px;
  cursor: pointer;
}
/* line 91, ../sass/comments.scss */
#comments .comment {
  /* Wrapper for a single comment */
  font-size: 15.0px;
  margin-bottom: 20px;
  position: relative;
}
/* line 96, ../sass/comments.scss */
#comments .comment .user-picture,
#comments .comment .user-picture img {
  height: 50px;
  width: 50px;
}
/* line 102, ../sass/comments.scss */
#comments .comment .user-picture {
  float: left;
  -moz-box-shadow: #DDD 1px 1px 10px;
  -webkit-box-shadow: #DDD 1px 1px 10px;
  box-shadow: #DDD 1px 1px 10px;
  position: relative;
  z-index: 10;
}
/* line 109, ../sass/comments.scss */
#comments .comment .user-picture img {
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
}
/* line 113, ../sass/comments.scss */
#comments .comment .content,
#comments .comment .submitted {
  margin-left: 60px;
}
/* line 118, ../sass/comments.scss */
#comments .comment a.commentlink {
  letter-spacing: 1px;
  font-size: 11px;
  color: #737373;
}
/* line 124, ../sass/comments.scss */
#comments .comment .content {
  position: relative;
  background-color: rgba(255, 255, 255, 0.75);
  -moz-border-radius: 0 5px 0 0;
  -webkit-border-radius: 0;
  border-radius: 0 5px 0 0;
  padding: 10px;
}
/* line 130, ../sass/comments.scss */
#comments .comment .content:before, #comments .comment .content:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
}
/* line 139, ../sass/comments.scss */
#comments .comment .content:before {
  height: 10px;
  width: 10px;
  background-color: rgba(255, 255, 255, 0.75);
}
/* line 145, ../sass/comments.scss */
#comments .comment .content:after {
  border: 5px solid #f2f2f2;
  -moz-border-radius: 0 10px 0 0;
  -webkit-border-radius: 0;
  border-radius: 0 10px 0 0;
}
/* line 150, ../sass/comments.scss */
#comments .comment .content.shortened {
  overflow: hidden;
}
/* line 155, ../sass/comments.scss */
#comments .comment .show-more {
  position: absolute;
  left: 80px;
  bottom: 5px;
  cursor: pointer;
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
  text-transform: capitalize;
  background: url('../images/icons-s605cc80613.png') 0 -30px no-repeat;
  height: 15px;
  width: 15px;
}
/* line 163, ../sass/comments.scss */
#comments .comment .show-more:hover {
  background: url('../images/icons-s605cc80613.png') 0 -45px no-repeat;
  height: 15px;
  width: 15px;
}
/* line 167, ../sass/comments.scss */
#comments .comment .show-more.open {
  background: url('../images/icons-s605cc80613.png') 0 -120px no-repeat;
  height: 15px;
  width: 15px;
}
/* line 169, ../sass/comments.scss */
#comments .comment .show-more.open:hover {
  background: url('../images/icons-s605cc80613.png') 0 -135px no-repeat;
  height: 15px;
  width: 15px;
}
/* line 176, ../sass/comments.scss */
#comments .comment .submitted strong {
  font-size: 14px;
  color: #C80000;
}
/* line 181, ../sass/comments.scss */
#comments .comment .submitted .unpublished-notice {
  display: inline-block;
  float: right;
  margin-right: 5px;
}
/* line 189, ../sass/comments.scss */
#comments .comment.comment-preview {
  background-color: #ffffea;
}
/* line 193, ../sass/comments.scss */
#comments .comment ul.links {
  font-size: 12.996px;
  line-height: 12.996px;
  display: block;
  list-style-type: none;
  padding: 0 5px 5px 0;
  margin: 0 0 0 60px;
  text-align: right;
  background-color: rgba(255, 255, 255, 0.75);
  -moz-border-radius: 0 0 5px 5px;
  -webkit-border-radius: 0;
  border-radius: 0 0 5px 5px;
}
/* line 204, ../sass/comments.scss */
#comments .comment ul.links li {
  display: inline-block;
  margin-left: 2px;
}
/* line 208, ../sass/comments.scss */
#comments .comment ul.links li.first a {
  -moz-border-radius: 5px 0 0 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px 0 0 5px;
}
/* line 211, ../sass/comments.scss */
#comments .comment ul.links li.last a {
  -moz-border-radius: 0 5px 5px 0;
  -webkit-border-radius: 0;
  border-radius: 0 5px 5px 0;
}
/* line 215, ../sass/comments.scss */
#comments .comment ul.links li a {
  color: #737373;
  display: block;
  background-color: #f2f2f2;
  padding: 5px;
}
/* line 220, ../sass/comments.scss */
#comments .comment ul.links li a:hover {
  color: #404040;
}
/* line 227, ../sass/comments.scss */
#comments .comment.admin .user-picture:after {
  content: "STAFF";
  font-size: 9px;
  background-color: #C80000;
  color: rgba(255, 255, 255, 0.75);
  width: 100%;
  text-align: center;
  display: block;
  position: relative;
  top: -10px;
  z-index: -1;
  height: 15px;
  line-height: 15px;
  border-radius: 0 0 5px 5px;
  font-weight: bold;
}
/* line 244, ../sass/comments.scss */
#comments .comment.upusers .user-picture:after {
  content: "MOD";
  font-size: 9px;
  background-color: #c8c8c8;
  color: #C80000;
  width: 100%;
  text-align: center;
  display: block;
  position: relative;
  top: -10px;
  z-index: -1;
  height: 15px;
  line-height: 15px;
  border-radius: 0 0 5px 5px;
  font-weight: bold;
}
/* line 262, ../sass/comments.scss */
#comments .indented {
  /* Nested comments are indented */
  margin-left: 60px;
}
/* line 266, ../sass/comments.scss */
#comments .comment-unpublished {
  /* Unpublished comments */
  /*background-color: #fff4f4;*/
  background-color: #c80000;
}
/* line 272, ../sass/comments.scss */
#comments .comment-unpublished div.submitted strong,
#comments .comment-unpublished div.submitted .commentlink {
  color: #fff;
}
/* line 278, ../sass/comments.scss */
#comments .comment-unpublished p.unpublished {
  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;
}
/* line 55, ../sass/_custom.scss */
.lt-ie8 #comments .comment-unpublished p.unpublished > * {
  position: relative;
}
