/* CSS Document */

/* DIVS ********************************************************************************/
div {
	margin:0px;
	padding:0px;
	vertical-align:top;
	}

div.bkgnd {
	width:1040px;
	background-repeat:repeat-y;
	}

div.cntnt {
	width:1000px;
	float:left;	/* un-CR */
	margin-left:20px;
	}

/* code box 
	• possibly float the previous tag
	• might need to style clear:left
	• disable HTML tags w/ &lt; and &gt; */
div.code {
	white-space:pre;
	color:#000000;
	font:"Courier New", Courier, monospace;
	background-color:#eeeeee;
	margin:0px 0px 0px 20px;	/* indented */
	padding:8px 0px 8px 0px;
	border:solid black;
	border-width:1px 0px 1px 0px;
	}

/* indented area with bg for quotes
	• possibly float the previous tag
	• might need to style clear:left */
div.quote {
	margin:0px 0px 0px 20px;	/* indented */
	background-color:#eeeeee;
	}

/* generally do NOT use an <hr> anywhere */
div.rule {
	clear:both;
	width:900px;
	height:3px;
	margin-top:5px;
	margin-bottom:5px;
	margin-left:auto;
	margin-right:auto;
	}

div.scrollport {
	width:998px;
	float:left;	/* removes the cr */
	overflow:scroll;
	border:solid 1px #000000;
	}

/* leftward float with margin and bg */
div.lward {
	margin-right:4px;
	float:left;
	background-color:#eeeeee;
	}

/* rightward float with margin and bg */
div.rward {
	margin-left:4px;
	float:right;
	background-color:#eeeeee;
	}

/* indented */
div.indnt {
	margin:0px 0px 0px 6px;
	}
