/* from bbd.com/stylin, who adapted from positioniseverything.com/easyclearing.html */
.clearfix:after {
	content: ".";         /* the period is placed on the pages as the last thing before the div closes */
	display: block;       /* inline elements don't respond to the clear property */
	height: 0;            /* ensuere the period is not visible */
	clear: both;          /* make the container clear the period */
	visibility: hidden;   /* further ensures the period is not visible */
}

.clearfix {display: inline-block;}  /* a fix for IE Mac */

/* next a fix for the dreaded Guillotine bug in IE6 */
/* Hides form IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */
/* end of "no-extra-markup" clearing method */
