/* COMMENTS APP
------------------------------------------------------------------ */

.comment_list { padding-left: 0; }
.comment_list > li, .comment_list .replies > li { list-style: none;}
.comment_list li:last-child { border-bottom: 0 none; }
.comment_content_wrapper { position: relative; } /* For the reply button */
.removed > .comment_content_wrapper .comment_text * { color: #ccc !important; }
.comment_content { word-wrap: break-word; }
.removed > .comment_content_wrapper .avatar img { opacity: 0.4; }
.comment .actions { margin: -10px 0 0 0; font-size: 12px; color: #999; }
.replies { padding-top: 10px; margin-top: 10px; }

.comment_list .comment_list_ad  { border-bottom: solid 1px #eee; margin-bottom: 10px; }
.comment_list .comment_list_ad h6 { display: none; }
.comment_list .comment_list_ad h6 { padding: 0 0 5px; margin: 0; line-height: 8px; text-align: center; letter-spacing: 1px; color: #697a85; text-transform: uppercase; }
.comment_list .comment_list_ad .spot { width: 468px; height: 60px; margin: 0 auto 10px; background: #ddd; }
.depth_limit .comment_list_ad { margin-left: -38px; }

/* Comment actions. (Because our markup is different from e_default.) */
.actions ul { display: inline; padding-left: 0; color: #999; font-size: 12px; }
.actions ul:before { content:"( "; }
.actions ul:after { content:" )"; }

.actions li { padding: 0; font-size: 12px; display: inline; }
.actions li:after { content: " | ";}
.actions li:last-child:after,
.actions li.reply:after {
  content: "";
}

.comment .actions li.reply {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
.comment .actions li.reply {
  opacity: .5;
  -webkit-transition: opacity .15s linear;
}
.comment:hover > .comment_content_wrapper .reply {
	opacity: 1;
}


/* Threading */
.replies,
.comment form {
	padding-left: 70px;
	border-top: 1px solid #eee;
}
.depth_limit .replies {
	padding-left: 0;
}
.depth_limit .actions ul {
  display: block;
}
.replies > li:last-child {
	padding-bottom: 0;
}
.comment.reply_form_loading:hover,
.comment.reply_form_loading:hover * {
	cursor: wait;
}
.comment {
	position: relative;
}
.comment form {
	margin-top: 10px;
}
.comment form h3 {
	display: none;
}

.comment .collapse_link { /* Added with JavaScript. */
	display: block;
	position: absolute;
	top: 0;
	right: 100%;
	margin-right: 10px;
	padding: 3px 4px;
	opacity: .15;
	-webkit-transition: opacity .15s linear;
}
.comment:hover > .collapse_link {
	opacity: .75;
}
.comment .collapse_link:hover {
	opacity: 1;
}

/* Collapsed threads */
.comment_list .collapsed .comment:last-child {
	margin-bottom: 0;
}
.comment_list .collapsed {
	position: relative;
	overflow: hidden;
	height: 45px;
}
.comment_list .collapsed:hover, .comment_list .collapsed_hover {
	cursor: pointer;
	background-color: #eee;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
.comment_list .collapsed * {
	display: inline;
}
.comment_list .collapsed .comment_text {
	margin-left: 0;
}
.comment_list .collapsed .avatar {
	margin-right: 10px;
}
.comment_list .collapsed .avatar,
.comment_list .collapsed .avatar img {
	width: 23px;
	height: 23px;
}
.comment_list .collapsed .avatar_hover {
	display: none;
}
.comment_list .collapsed .author,
.comment_list .collapsed .comment_content,
.comment_list .collapsed .comment_content * {
	font-size: 12px;
}
.comment_list .collapsed .author {
	float: left;
	margin-bottom: 0;
}
.comment_list .collapsed .author {
	line-height: 23px;
	padding-right: 5px;
}
.comment_list .collapsed .author small,
.comment_list .collapsed .author .parent_link {
	display: none;
}
.comment_list .collapsed .actions:before {
	/* Currently commented out because this causes IE to kick into compatibility
	mode when the .collapsed class is removed from elements dynamically with
	the threaded comments javascript.
	content: "…"; */
	color: #f66926;
}
.comment_list .collapsed .actions {
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 2px 10px 0;
	background-color: #fff;
	border-radius: 3px;
	font-weight: bold;
	color: #333;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-transition: opacity .15s linear;
}
.comment_list .collapsed .actions ul {
	display: none;
}
.comment_list .collapsed .actions time {
	display: none;
}
.comment_list .collapsed:hover .actions time {
	display: inline;
}

.highlighted_comment > .comment_content_wrapper { background: #FEFDE8; }

/* MODERATION APP (COMMENTS)
------------------------------------------------------------------ */
body.moderation .content-object h3 { border-bottom: 1px solid #eee; margin-bottom: 10px; }
body.moderation .content-object h3 .comment-count { font-size: 16px; color: #999; display: inline; }
body.moderation .content-object .comment_list { padding-top: 20px; margin-bottom: 30px; }
body.moderation .content-object .comment { padding-left: 30px; }
body.moderation .content-object .comment:last-child { border-bottom: 0 none; }
body.moderation button { margin: 5px 8px 5px 0;}
form.moderation { display: inline; }
form.moderation p { display: inline; }

