/**
 * @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 */
	padding: 6px 28px 0px 28px;
	background: #33383d url('data:image/gif;base64,R0lGODlhFAAMAMQAAAAAAP///5OYn5mepG5ydo2Rlaqusri8wMfKzfLz9O/w8ejp6nB0d6KmqeTm5/z8/Pn5+f///wAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACH5BAEAABEALAAAAAAUAAwAAAVeYCSOItMgaIo2DEk2wRPPzwMV7ojI/Aw9hpwIQXsIAhBkULhD2gQDG1AYIUKgg2w0scwhkgbt4JCYMpHOcZlL/UoT5EdC0XXt1nI5ZFF/4dcKCw44QgwFBoiJiAUEIQA7') no-repeat center left; /*note-bullet*/
	color:white;
	font-weight:bold;
}

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

.comment { /* Wrapper for a single comment */
	padding: 0 15px 0.5em;
	border:1px solid #cccccc;
	margin: 5px 0;
	background-color:#f8f8f8;
}

.comment p { /*  */
	margin:0.6em 0 1.2em;
}


.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 */
	margin:0;
	line-height:1em;
}
h3.comment-title a { /* Comment title */
	color: #494949;
	text-decoration:none;
	font-weight:bold;
}

.comment .new { /* "New" marker for comments that are new for the current user */
	padding:0 10px;
	color:white;
	background-color:#cc3333;
}

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

.comment .submitted { /* The "posted by" information */
	font-size:75%;
	line-height:1em;
	font-style:italic;
	float:right;
	padding-top:3px;
}

.comment .permalink { /* Comment's permalink wrapper */
  font-size: 75%;
}

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

.comment ul.links { /* Comment links. See also the ul.links declaration in the pages.css. */
	float:right;
	margin:0;
}
.comment ul.links a{
	padding:2px 4px;
	border:1px solid #cccccc;
	text-decoration:none;
	font-weight:bold;
	background-color:white;
}

.comment ul.links a:hover{
	color:white;
	background-color:#cc3333;
}

.comment ul.links li{
	padding:0 0 0 5px;
}


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