/* CSS Document
Style sheet for code boxes used within web pages on MSI Web Site.
Created: MSI, JUL-2005

Notes: 
	- Fixed top and bottom margins and padding are needed to prevent screen hop in IE.
	- Fixed width instead of % width necessary to get IE to display code boxes correctly.
*/

#content p.code {
	font-family: 'Courier New', Courier, mono;
	font-weight: bold;
	padding: 0 10px;
	}

.codeBox, .codeBoxScroll {
  border: 1px solid #000; 
  font-family: 'Courier New', Courier, mono, serif; 
  font-size: 80%;
  background-color: #fff;
	width: 90%;
 }

.codeBoxScroll {
	overflow: scroll;
	}
	
.codeBoxLeft {
	margin: 6px .25% 0 .5%;
	}
.codeBoxRight {
	margin: 6px .5% 0 .25%;
	}
.codeBoxLeft, .codeBoxRight {
	padding: 0;
  height: 300px;
	width: 92.1%;
	overflow: scroll;
	border: 1px solid #000;
	font-family: 'Courier New', Courier, mono, serif;
	font-size: 80%;
	text-align: left;
	background-color: #fff;
	}

.scrollBoxFull {
  margin: 0 1%;
	padding: 0;
  height: 300px; 
	width: 98%;
	overflow: scroll; 
	border: 1px solid #000; 
	}