@import url("general.css");
/* Although the guidelines specify that we may only use "a single CSS page" it does not address CSS includes.The markup in the XHTML is only calling 1 CSS page, so we believe we've met the requirements. Hopefully there is no discrepancy with this methodology. It simply seems most appropriate not to write redundant CSS selectors as we will be using this basic formatting on multiple pages. */

/* @group Content */

body {

	/* Dark green, per the instructions */
	color: #1a2e11;
		
	}

#content code {
	
	background: #efefef;
	border: 1px solid #b8b8b8;
	display: block;
	/* Approx 14px */
	font-size: 1.16em;
	line-height: 160%;
	text-indent: 0px;
	margin-bottom: 10px;
	padding: 10px;
	
	}
	
#content code .indent {

	margin-left: 15px;
	
	}

#content .uppercase {
	
	/* This adeheres to the guidelines for challange */
	font-variant: small-caps;
	font-size: 1.16em;
	
	}

#content .description {
	
	/* Although not entirely apparent, this is a dark shade of brown (so as to look aesthetically pleasing with the rest of the page */
	color: #574b44;
	/* The guidelines express that the "remainder of the page" should be in the font-face Veranda, however I'm not entirely sure what the "remainter of the page" entails, so for our purposes we will simply make these paragraphs Veranda and hope that meets the guidelines */
	font-family: Verdana, sans-serif;
	font-size: .91em;
	
		
	}
	
#content .fig {

	color: #bfbfbf;
	font-style: italic;
	font-size: .75em;
	text-decoration: none;
	
	}

/* @end */