/*****************************************************************************/
/* CSS enclose float hack to make floats enclose within the container div */
/*****************************************************************************/
.floatFix:after{
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/* Which float to clear, left or right, both is automatic */
.floatFix-left:after{ clear: left; }
.floatFix-right:after{ clear: right; }
.floatFix{ display: inline-table; } /* Mark Hadley's fix for IE Mac */
/* Back Mac Hack, Hides this css from Mac IE (this back slash-->) \*/
* html .floatFix{ height: 1%; }
.floatFix{ display: block; }
/* End of Back Mac Hack */
/* End of CSS enclose float hack */

.vbox{
	margin-bottom: 5px;
}
.hbox{
	float: left;
	display: inline;
}
.hbox-nopadding{
	float: left;
	display: inline;
}
.hbox-right{
	float: right;
	display: inline;
}