@charset "utf-8";

/*---Class selectors (target specific words)---*/

.floatLeft { 
	float: left; 
}
.floatRight { 
	float:right; 
}
.clearFloat { 
	clear:both; 
}
.textLeft { 
	text-align:left; 
}
.textRight { 
	text-align:right; 
}
.textCenter { 
	text-align:center; 
}
.textJustify { 
	text-align:justify; 
}
.blockCenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
	width: 0px; /* remember to set width */
}
.bold { 
	font-weight: bold; 
}
.italic { 
	font-style: italic; 
}
.underline { 
	text-decoration: underline; 
}
.noindent { 
	margin-left: 0; padding-left: 0; 
}
.nomargin { 
	margin: 0; 
}
.nopadding { 
	padding: 0; 
}
.nobullet { 
	list-style: none; 
	list-style-image: none; 
}
.basicRow {
	clear: both;
}
.center {
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}
.orangeText {
	font-size: 1em;
	color: #FE8005;
	font-weight: bold;
}
.orangeText02 {
	font-size: 22px;
	color: #000;
	line-height: 0px;
}

