.clearBoth
{
	clear: both;
}

.clearLeft
{
	clear: left;
}

.clearRight
{
	clear: right;
}

.displayNone
{
	display: none;
}

.displayBlock
{
	display: block;
}

.displayNoneImportant
{
	display: none !important;
}

.displayBlockImportant
{
	display: block !important;
}

.displayInline
{
    display: inline;    
}

.floatLeft
{
	float: left;
}

.floatRight
{
	float:right;
}

/*

	clearfix
	
*/
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}