/*
	clearfix.css
	Clearfix method

	Copyright (c) 2007, Colovic Vladan
	This one based on http://perishablepress.com/press/2008/02/05/lessons-learned-concerning-the-clearfix-css-hack/
	wich is modified version of http://www.positioniseverything.net/easyclearing.html
	But, at the end, the one that i did not used, but it looks very good: http://snipplr.com/view/86/clear-floats-without-structural-markup/
*/

.clearfix:after
{
	content: " ";
	visibility: hidden;
	display: block;
	font-size: 0;
	clear: both;
	height: 0;
}

.clearfix { display: inline-block; }

/* start commented backslash hack \*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* close commented backslash hack */