/**
 * @file
 * Comment Styling
 */


#comments /* Wrapper for the list of comments and its title */ {
  margin: 1.5em 0;

border-top:1px solid #d4d4d4;
padding-top:15px;
}

#comments h2.title /* Heading for the list of comments */ {
}
#comment-form {
	
	
	
}
#comments h2.comment-form /* Heading for the comment form */ {

}

.comment /* Wrapper for a single comment */ {
	border-bottom:1px solid #d4d4d4;
	margin:10px 0;
}

.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 */ {
	margin-bottom:.2em;
}

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

.comment .user-picture /* The picture of the comment author */ {
	float:left;
	width:auto;
}

.comment .submitted /* The "posted by" information */ {
	font-size:.85em;
	color:#999;
	line-height:1.25em;
	margin-bottom:.5em;
}

.comment .content /* Comment's content wrapper */ {
}

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

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

.indented /* Nested comments are indented */ {
  /* margin-left: 25px; */ /* Drupal core uses a 25px left margin */
}
#comment-form #edit-submit,
#comment-form #edit-preview {
	margin-right:5px;
}

#comment-form #edit-submit,
#comment-form #edit-preview,
input#edit-vote,
#block-system-main a.button,
#block-system-main ul.links.inline a{
	-moz-box-shadow:inset 0px 1px 0px 0px #a5a5a5;
	-webkit-box-shadow:inset 0px 1px 0px 0px #a5a5a5;
	box-shadow:inset 0px 1px 0px 0px #a5a5a5;
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ababab), color-stop(1, #6e6e6e) );
	background:-moz-linear-gradient( center top, #ababab 5%, #6e6e6e 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ababab', endColorstr='#6e6e6e');
	background-color:#ababab;
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #888888;
	display:inline-block;
	color:#ffffff;
	font-family:arial;
	font-size:1.2em;
	font-weight:normal;
	padding:3px 18px;
	text-decoration:none;
	text-shadow:1px 1px 0px #5e5e5e;
}
#comment-form #edit-submit:hover,
#comment-form #edit-preview:hover,
input#edit-vote:hover,
#block-system-main a.button:hover,
#block-system-main ul.links.inline a:hover{
	background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #6e6e6e), color-stop(1, #ababab) );
	background:-moz-linear-gradient( center top, #6e6e6e 5%, #ababab 100% );
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#6e6e6e', endColorstr='#ababab');
	background-color:#6e6e6e;
}
#comment-form #edit-submit:active,
input#edit-vote:active,
#block-system-main a.button:active,
#block-system-main ul.links.inline a:active{
	position:relative;
	top:1px;
}
a.button-link {
font-size:15px;
color:#fff;
background:#CF1717;
padding:8px;
text-align:center;
display:block;
-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	margin:10px 0px;
	width:300px;
}
a.button-link:hover {
color:#fff;
}

#block-system-main ul.links.inline a {
	font-size:.9em;
	padding:1px 10px;
}
#block-system-main .submitted a {
	color:#666;
}
#block-system-main .submitted a:hover {
	color:#CF1717;
}
#comments .user-picture {
	width:50px;
	height:50px;
	float:left;
	margin:0 10px 0 0;
}
#comments .user-picture  img{
	width:50px;
	height:50px;

}

.comment-content {
	margin-left:60px;
}
.page-comment .comment-content {
	margin-left:130px;
}