@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;
}
.blueText {
	font-size: 1em;
	color: #00F;
}
.container {
	margin-left: 16px;
	margin-bottom: 16px;
	width: 400px;
}
.box001  {
	float: left;
	width: 280px;
	margin-left: 20px;
}
.box002  {
	float: left;
	width: 280px;
	margin-left: 20px;
}