@charset "UTF-8";
/* CSS Document */

.right { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.left { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearleft {
	clear:left;
}
.clearright {
	clear:right;
}
.clearall {
	clear:all;
}
.red {
	color:#FF0000;
}
.blue {
	color:#0000FF;
}
.white {
	color:#FFFFFF;
}
.black {
	color:#000000;
}
.pad10below {
	padding-bottom:10px;
}
.pad10above {
	padding-top:10px;
}
.pad10topandbottom {
	padding-bottom:10px;
	padding-top:10px;
}
.bigger {
	font-size: 120%;
}
.huge {
	font-size:150%;
}
.smaller {
	font-size: 85%;
}
.tiny {
	font-size:65%;
}
