/* 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.removed { background-color: #fff0f0; }
.removed .comment_text a { color: red; }
.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; }


/* Threading */
.replies,
.comment form {
	padding-left: 70px;
	border-top: 1px solid #eee;
}
.replies.depth_limit {
	padding-left: 0;
}
.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;
	opacity: .15;
	-webkit-transition: opacity .15s linear;
}
.comment:hover > .collapse_link {
	opacity: .75;
}
.comment .collapse_link:hover {
	opacity: 1;
}

/* Collapsed threads */
.collapsed .comment:last-child {
	margin-bottom: 0;
}
.collapsed {
	position: relative;
	overflow: hidden;
	height: 45px;
}
.collapsed:hover, .collapsed_hover {
	cursor: pointer;
	background-color: #eee;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
}
.collapsed * {
	display: inline;
}
.collapsed .comment_text {
	margin-left: 0;
}
.collapsed .avatar {
	margin-right: 10px;
}
.collapsed .avatar,
.collapsed .avatar img {
	width: 23px;
	height: 23px;
}
.collapsed .avatar_hover {
	display: none;
}
.collapsed .author,
.collapsed .comment_content,
.collapsed .comment_content * {
	font-size: 12px;
}
.collapsed .author {
	float: left;
	margin-bottom: 0;
}
.collapsed .author {
	line-height: 23px;
	padding-right: 5px;
}
.collapsed .author small,
.collapsed .author .parent_link {
	display: none;
}
.collapsed .actions:before {
	content: "…";
	color: #f66926;
}
.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;
}
.collapsed .actions ul {
	display: none;
}
.collapsed .actions time {
	display: none;
}
.collapsed:hover .actions time {
	display: inline;
}
.collapsed_thread .replies {
	padding-left: 35px;
}

.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; }

