.content-width {
	max-width: 960px;
	margin: 0 auto;
	margin-bottom: $globalMargin;

	@include responsive('<', 960px, (
		padding-left: $globalPaddingS,
		padding-right: $globalPaddingS
	));
}

// CSS image replacement, Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757
.ir {
	font: 0/0 a;
	color: transparent;
	text-shadow: none;
	background-color: transparent;
	border: 0;
}

// Clearfix, For clearing floats like a boss h5bp.com/q
.clearfix {
	*zoom: 1;
	&:before, &:after {
		display: table;
		content: "";
		line-height: 0;
	}
	&:after {
		clear: both;
	}
}

// Clear element
.clear {
	@extend .ir;
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	width: 0;
	height: 0;
}