.group {
    content: "";
  	display: table;
  	clear: both;
}
.social {
	width: 100%;
	background: #7E8BDA; /* Gray: #CCC, Purple: #7E8BDA, Green: #82BF54, Orange: #F9B04E */
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: Arial, Helvetica, sans-serif;
}
.social-content {
	padding: 15px 16px;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.social h1 {
	font-size: 2em;
	color: #FFF;
	padding: 0 4px 8px;
}
.button-hold {
	float: left;
	margin: 4px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
	transition: background 0.1s linear;
	background: rgba(255,255,255,0.3);
	padding: 8px;
}
.button-hold:hover {
	background: rgba(255,255,255,0.5);
}
.share-button {
	background: rgba(255,255,255,0.3);
	margin: 4px;
	border-radius: 3px;
	padding: 0 8px 0 0;
	float: left;
	display: block;
	transition: background 0.1s linear;
}
.share-button:hover {
	background: rgba(255,255,255,0.5);
}
.share-button p {
	font-size: 1.2em;
	color: #FFF;
	font-weight: bold;
	padding: 0;
	margin: 10px 0px 0px 8px;
	float: left;
}
.share-button img {
	vertical-align: middle;
	padding: 0;
	margin: 7px 0px 7px 8px;
}