﻿/* Name: Adam Fournier
 * Date: April 19, 2010
 * Description: Style sheet for the master page to set layout rules.
 */

body {
	text-align: center;
	margin: 0px;
	padding: 0px;
	width: 100%;
	min-width: 800px;
}

/* box to hold all content and center in window */
div.contentBox {
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
}

/* box to hold header */
div.headerBox {
	margin: 10px 10px 10px 10px;
	padding: 4px;
}

/* box to hold the main content of the page */
div.contentBodyBox {
	margin: 10px 10px 10px 10px;
	padding: 10px;
}

/* box to hold the footer */
div.footerBox {
	clear: both;
	margin: 10px 10px 10px 10px;
}
	
