﻿/*
--------------------------------------------------------------------------------
	Clearing Floats with Self-Clearing Method
	http://www.positioniseverything.net/easyclearing.html
	
	Supported Browsers:
		- IE Mac 5
		- IE Win 5+
		- FireFox 1.5+
		- Opera 9+
		- Safari 2+
	
	Usage:
		<div id="parent" class="clearFix">
			<div id="floatLeft"/>
			<div id="floatRight"/>
		</div>
	
--------------------------------------------------------------------------------
*/

.clearFix:after {
	content:    ".";
	display:    block;
	height:     0;
	clear:      both;
	visibility: hidden;
	font-size:  0;
}

.clearFix {
	display: inline-block;
}

/* Hide From IE5 Mac \*/
.clearFix {
	display: block;
	_height: 1%; /* IE6 */
	zoom:    1;
}
/* */