
/* block-level center align */
.layoutCenter { margin: 0 auto; }

/* floats */
.floatContainer {
	overflow: hidden;
	position: relative;
	width: 100%;
}
.floatLeft  { float: left; }
.floatRight { float: right; }
.floatBreak {
	/* use in empty block-level element */
	clear: both;
	float: none;
	height: 1px;
	line-height: 1px;
	font-size: 1px;
	margin-top: -1px;
}

/* text alignment */
.textLeft   { text-align: left; }
.textRight  { text-align: right; }
.textCenter { text-align: center; }

/* display */
.hide        { display: none; }
.show        { display: block; }

/* reset typeface */
.resetTypeStyle {
	font-size: 100%;
	font-style: normal;
	font-weight: normal;
	letter-spacing: 0;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	word-spacing: normal;
}
