/*
Copyright Rent4AllPM.ca
Created: 11-11-09
By: Fred Barkhouse

Basic formating rules like bold, italic, underline, etc
*/

.bold {
	font-weight: bold;
}

.italic {
	font-style: italic;
}

.underline {
	text-decoration: underline;
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.center, .centered {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.top {
	vertical-align: top;
}

.bottom {
	vertical-align: bottom;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.clearBoth {
	clear: both;
}

.required {
	color: #FF0000;
	font-weight: bold;
}

.smaller {
	font-size: .8em;
}

.larger {
	font-size: 1.2em;
}

.super {
	position: relative;
	top: -0.5em;
	font-size: 80%;
}
