	/* based on Project 6 from "More Eric Meyer on CSS".
	 * I've matched the colors in the Bluffton University logo as 3-digit hex colors, 
	 * for my borders and links. 
	 * The dark blue is #325; the official color is rgb(47,27,87) or #2f1b57. 
	 * The light blue is #47d; the official color is rgb(66,120,211) or #4278d3. 
	 */
	 
	/* This is the print stylesheet! */

	/* generic styles */
	body {
	background: #eee;
	color: #000;
	margin: 0.25in;
	padding: 0;
	font: 12pt Verdana, Geneva, sans-serif;
	text-align: justify;
}

	a:link, a:visited {
	color: Black;
	background: transparent;
	text-decoration: none;
}

	h1 {
		font-size: 1.8em;
	}
	/* 	naturally, h2 and other heading styles would be inserted as necessary; the plan
	is to stagger their sizes 1.8, 1.6, 1.4, 1.2, 1. Even-numbered headings will have
		font-family: Georgia, "Times New Roman", Times, serif;
	*/

	p {
		margin: 0; padding: 6pt 0;
	}
	
	img {
		border: 0;
	}
	/* end generic styles */

	/* banner styles */
	div#Banner {
		width: 100%;
		border: 0;
		display: block;
		min-height: 100px; /* allows for the BU logo image float */
	}
	
	div#Banner * {
		padding-left: 220px; /* allows for the BU logo image float */
	}

	div#Banner a#BULogo {
		position: absolute;
		top: 0; left: 0;
		margin: 0; padding: 0;
	}

	a#BULogo img {
		border: 0; 
		margin: 0; padding: 18px;
		width: 184px; height: 48px;
	}
	/* end banner styles */

	/* main text styles */
	div#MainText {
		margin: 0; padding: 0;
		font: 12pt/15pt "Times New Roman", Times, serif;
	}
	/* end main text styles */

	/* begin plug-in column styles */
	div#PlugIns {
	display: none;
}
	/* end plug-in column styles */

	/* menu styles */
	div#Menu {
	display: none;
}
	/* end menu styles */

