/* CSS Document */
/* here follows the brillant "no-extra-markup" clearing method devised by Tony Aslett - www.csscreator.com */
/* simply add the clearfix class to any containter that must enclose floated elements */
/* read the details of how and why this works at http://www.positioniseverything.net/easyclearing.html */

/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */
/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}

.clearfix {
	display: inline-block; /* a fix for IE Mac */
}

.clearfix {
	display: block;
}

.clearfix:after {
	clear: both; /* make the container clear the period */
	content: "."; /* the period is placed on the page as the last thing before the div closes */
	display: block; /* inline elements don't respond to the clear property */
	height: 0; /* ensure the period is not visible */
	visibility: hidden; /* further ensures the period is not visible */
}

