/*
 * Contains classes for constructing pages
 * Authored by Cameron Bailey
 * Last Modified December 9, 2009
 */

/* Container for all modules, centers everything */
.Container {
	width: 955px;
	margin: 0 auto;
}

/* Widths */
.WidthOne {
	width: 108px;
}
.WidthTwo {
	width: 229px;
}
.WidthThree {
	width: 350px;
}
.WidthFour {
	width: 471px;
}
.WidthFive {
	width: 592px;
}
.WidthSix {
	width: 713px;
}
.WidthSeven {
	width: 834px;
}
.WidthEight {
	width: 955px;
}

/* Margins */
.MargLeft {
	margin-left: 13px;
}
.MargRight {
	margin-right: 13px;
}
.MargOneLeft {
	margin-left: 121px;
}
.MargTwoLeft {
	margin-left: 242px;
}
.MargThreeLeft {
	margin-left: 363px;
}
.MargFourLeft {
	margin-left: 484px;
}
.MargOneRight {
	margin-right: 121px;
}
.MargTwoRight {
	margin-right: 242px;
}
.MargThreeRight {
	margin-right: 363px;
}
.MargFourRight {
	margin-right: 484px;
}

/* Floats */
.FloatLeft {
	float: left;
}
.FloatRight {
	float: right;
}
.ClearBoth {
	clear: both;
}
