/* Fix floating elements sticking out of containing element with border */
.clearfix:after {
	content: ".";
	display:block; /* to make the clear property available */
	height: 0; /* prevent the extra content from taking up a line space at the end */
	clear:both; /* for the content to be after the floating element */
	visibility:hidden; /* make the content invisible */

}

