
/* Default background & text color for page
   (all other tags inside <body> inherit this
   as a default) */
body {
	background: #6f8d72;
	color: #000000;
}

/* The overall container for the article */
div.article-container {
	background: #ffffff;
	width: 750px;
	margin-left: 5em;	
	padding-left: 2em;
	padding-right: 2em;
	padding-top: 1em;
	padding-bottom: 2em;
	border: 4px solid black;
}

/* Header for page (not article!) */
div.article-header {
	font-size: 1.6em;
	font-weight: bold;
	padding-bottom: .5em;
}

/* for <section> */
div.section {
}

/* for <text> */
div.text {
	font-size: 1em;
	margin-left: 2em;
	margin-right: 6em;
	margin-bottom: 1em;
	margin-top: 1em;
}

/* for <code> */
div.code {
	font-size: 1em;
	margin-left: 1em;
	background: #dddddd;
	width: 640px;
	border: 1px solid #888888;
	padding-left: 10px;
	margin-top: 1em;
	margin-bottom: 1em;
	padding-bottom: .2em;
	padding-top: .2em;
	
	/* hide any text that falls outside the bounding box */
	overflow: hidden;
}

div.footer {
	font-size: 0.8em;
	border-top: 2px solid black;
	padding-top: 1em;
	margin-top: 3em;
}


