body { 
	margin: 0;
	font-family: Arial;
	text-align: center;
}

a:visited { color: #93B67B; }
a:link {
	color: #93B67B;
	border: none;
}
h1 { 
	margin: 0;
	background-color: #93B67B;
	border-left: 2px solid gray;
	border-bottom: 2px solid gray;
	padding: 2 0 0 2;
}

p.centered { text-align: center; }

.thumbnail {
	width: 255;
	height: 185;
	border: 2px solid gray;
	margin: 3px;
}

/* the widths are adjustable in these two container divs, but i'd suggest keeping them identical otherwise the little sections will overlap */
 
div#container {
	width: 58em;
	padding: 1em;
	background-color: white;
	float: none;
	border: 0;
	margin: 0 auto;
	text-align: left;
}

div#header {
	text-align: left;
	background-color: white;
	width: 58em;
	border: 0;
}

div#footer {
	background-color: white;
	width: 100%;
	padding: 2em;
	border: 0;
	font-size: x-small;
	clear: both;
	text-align: center;

}


/* instead of repeating the same data for each subsection, i made the generalized DIV perform like one of the little things. if you wanted to adjust, for whatever reason, a particular section's appearance, each one has a name. otherwise they'll inherit from this div unless you specify changes. */

div {
	background-color: #dbdbdb;
	width: 28em;
	float: left;
	padding: 2px;
	margin: 1px;
	border: 3px solid black;
}

