/* common float / clear classes */
.floatRight {
	float:right;
}

.floatLeft {
	float:left;
}

.floatNone {
	float:none;
}

.floatImgLeft {
	float:left;
	padding:0 1.8em 0 0;
}

.floatImgRight {
	float:right;
	padding:0 0 0 1.8em;
}

.clear {
	clear:both;
	height:1px;
	line-height:1px;
	font-size:1px;
}

.clearBoth {
	clear:both;
}

.clearLeft {
	clear:left;
}

.clearRight {
	clear:right;
}

/* common alignment classes */
.alignLeft {
	text-align:left;
}

.alignCenter {
	text-align:center;
}

.alignRight {
	text-align:right;
}

/* common text classes */
.alert {
	color:#ff0000;
	font-weight:bold;
}

.bold {
	font-weight:bold;
}

.italic {
	font-style:italic;
}

.underline {
	text-decoration:underline;
}

.huge {
	font-size:2.0em;
}

.large {
	font-size:1.6em;
}

.normal {
	font-size:1.2em;
}

.small {
	font-size:1.1em;
}

.tiny {
	font-size:1.0em;
}

.uppercase {
	text-transform:uppercase;
}

.lowercase {
	text-transform:lowercase;
}

.hidden {
	text-indent:-9999px;
	font-size:1px;
	line-height:1px;
}

.noPad {
	padding:0;
}

.blue {
	color:#224f81;
}

.green {
	color:#455d3a;
}

.gray {
	color:#3c3c49;
}

.orange {
	color:#c76517;
}