/* =============== The click and expand system =============== */
#comments-bar { /* The bar that expands when clicked */
	font-size: 16px; /* Same as h2 */
	/*font-weight: bold;*/
	letter-spacing: .05em;
	word-spacing: 3px;
	background: #29AD87;	/* Same dark green as Related Information */
	color: White;
	padding: 2px 0 4px 30px;
	/* Rounded top corners */
	-webkit-border-radius: 8px 8px 0 0;
	-moz-border-radius: 	  8px 8px 0 0;
	border-radius: 		  8px 8px 0 0;
	/* Shadow */
	-webkit-box-shadow: #acacac 0px 2px 3px;
	-moz-box-shadow: 	  #acacac 0px 2px 3px;
	box-shadow: 		  #acacac 0px 2px 3px;
}
#comments-bar:hover {
	/*opacity: .9;*/
	background: #3ab592; /* Lighter version of 29AD87 */
	cursor: pointer;
	/*font-size: larger;*/
}
#comments-panel { /* The panel that appears */
	display: none;
	background-color: #EAF6F3; /* Same light green as Related Information items */
	
	border-top:    solid 1px #EAF6F3; /* So top padding can be 0, thus giving smoother accordian */
	border-right:  solid 1px LightGray;
	border-bottom: solid 1px LightGray;
	border-left:   solid 1px LightGray;
	
	padding: 0px 10px 13px 10px;
	/* Rounded bottom corners */
	-webkit-border-radius: 0 0 8px 8px;
	-moz-border-radius: 	  0 0 8px 8px;
	border-radius: 		  0 0 8px 8px;				
	/* Shadow */
	-webkit-box-shadow: #acacac 0px 2px 3px;
	-moz-box-shadow: 	  #acacac 0px 2px 3px;
	box-shadow: 		  #acacac 0px 2px 3px;
}
/* Use example:
	<script type="text/javascript">
		$(document).ready(function(){
			$("#comments-bar").click(function(){  $("#comments-panel").slideToggle("slow");  });
		});
	</script>		

<div id="comments-bar">Comments - Share your thoughts, help solve the problem</div>
<div id="comments-panel">
	<p>xxxxx</p>
	<p>xxxxx</p>
</div>
*/

/* =============== The actual Livefyre comments =============== */
#comments-spacer {
	clear: both;
	height: 30px;	
}
#comments {
	font-family: 'Open Sans', Verdana, Helvetica, Arial, sans-serif;
	background: GhostWhite;
	margin: 0px 3px 0px 3px;
	padding: 1px 130px 1px 130px;
	
	/* Shadow */
	-webkit-box-shadow: #acacac 0px 2px 3px;
	-moz-box-shadow: 	  #acacac 0px 2px 3px;
	box-shadow: 		  #acacac 0px 2px 3px;
	/* Rounded bottom corners */
	-webkit-border-radius: 0 0 8px 8px;
	-moz-border-radius: 	  0 0 8px 8px;
	border-radius: 		  0 0 8px 8px;				
}
#comments-header-box {
	border:  1px solid #999999;
	padding: 0px 10px 0px 17px;
	margin: 20px 0px 20px 0px;
	background-color: #dadeef; /* Light blue */ 
	/* Different shadow due to thin border, want a crisp look */
	-webkit-box-shadow: #acacac 1px 2px 4px; 
	-moz-box-shadow: 	  #acacac 1px 2px 4px;
	box-shadow: 		  #acacac 1px 2px 4px;	
}
#comments-header-box p {
	margin:  12px 0 12px 0;
	padding: 0; 
	font-size: 14px;
}
#comments-header-title {
	font-size: 16px;
	font-weight: 600;
}
.lf_listener_count, .lf_avatar { position: relative; z-index: -1; }
