/* CSS for page border and background like that used for TTT question pages */

.letter_bg { /* box behind the shadow, in this case lighter than the page backbround */
  position: relative;
  top: 0;
  left: 0;
	width:474px;
	margin: 8px auto 8px auto;
	padding: 13px 0 9px 3px;
	/* padding: 12px 9px 16px 6px; */
	background-color: rgb(255,255,255);
	color: red;
	border: 0px solid green;
 } 

.letter_bg p {
 text-align: left;
 margin: 1em 25px;
 font-family: 'courier new', courier, monospace, 'times new roman', serif;
 }

/* The one-color shadow effect is produced by the following two divs. Method documented by Daniel Burke at http://labs.silverorange.com/archives/2004/january/shadowboxing */  
.shadowbox {
  /* background: #ccc; original shadow color */
  /* position: relative; */
	background-color: rgb(205,215,225); /* used in TTT: 175,175,195 */
  top: 4px;
  left: 4px;
	width: 440px;
  margin: 0 auto;
  }
.shadowbox div {  /* div for the actual text and its background. this version has an olive border on tan bg. */
  position: relative;
  background-color: rgb(245,245,235);
  border-top: 1px solid rgb(225,225,205);
	border-right: 1px solid rgb(75,75,75);
  border-bottom: 1px solid rgb(75,75,75);	
  border-left: 1px solid rgb(225,225,205);	
  color: rgb(0,0,0);
  padding: 10px 0px;
  font-size: 1.0em;
	line-height: 1.3em;
  top: -3px;
  left: -3px;
}
