$half_width : 100% / 2;
$third_width : 100% / 3;
$fourth_width : 100% / 4;
$fifth_width : 100% / 5;
.splits {
	position: relative;
	& > br, & > p { display: none; }
}
.split {
	@include boxit;
	float: left;
	padding-right: $content_spacing / 2;
	padding-left:  $content_spacing / 2;
	&.l { padding-left:  0 !important; }
	&.r { padding-right: 0  !important; }
	&.half {
		&.one{ width: $half_width; }
	}
	&.third {
		&.one{	width: $third_width * 1; }
		&.two{	width: $third_width * 2; }
	}
	&.fourth{
		&.one{	width: $fourth_width * 1; }
		&.two{	width: $fourth_width * 2; }
		&.three{width: $fourth_width * 3; }
	}
	&.fifth{
		&.one{	width: $fifth_width * 1; }
		&.two{	width: $fifth_width * 2; }
		&.three{width: $fifth_width * 3; }
		&.fourth{width: $fifth_width * 4; }
	}	
}