/* NTBO Style Sheet */

a:link {color:#ffeaa8;}		/* pale orange */
a:visited {color:#E58113;}		/* bright orange */
a:active {background-color:#ccc;}		/* gray */
	
	body {
		font-size: 10pt;
		}
	
	#keywords {
		color:#ffeaa8;
		font: 9pt arial,sans serif;
		margin: 0 0 -60px 5%;
		}
		
	#content {
		font-family: arial,helvetica,sans serif;
		font-size: 10pt;
		margin-right:10%;
		margin-left:5%;
		margin-top:5%;
		padding-bottom:10px;
		background-image: url('images/background.jpg');				/* was #ffeaa8 */
		border:1px solid #E58113;
		text-align:left;
	/*	width:740px;	*/
		min-width:500px;
		max-width:740px	
		}
		
	#content h1, h2, h3, h4 {	
		margin-top:0px;
		margin-bottom:10px;
		padding:0px 20px 0px 20px;
		text-align: center;
		}
		
	h1 {
		font-size: 16pt;
		}
		
	h2 {
		font-size: 14pt;
		}
		
	h3 {
		font-size: 10pt;
		}
		
	h4 {
		font-size: 12pt;
		}		
				
	#menusitelinks {
		font-size:12px;
		}
	
	.menu {								/* Need to make separate classes for the menu boxes and the contact box */  
		border-bottom:1px solid #E58113;
		border-left:1px solid #000; 
		border-top:1px solid #E58113;
		border-right:10px solid #E58113;
		background:#000 url('images/menu_background.jpg') bottom;
		/* color: #ffeaa8; */
		padding:12px;
		margin-bottom:10px;
		text-align:left;
		font-size:10px
		}
		
	.contactinfo {
		border-bottom:1px solid #E58113;
		border-left:1px solid #000; 
		border-top:1px solid #E58113;
		border-right:10px solid #E58113;
		background:#000 url('images/contact_background.jpg') top right no-repeat;
		/* color: #ffeaa8; */
		padding:12px;
		margin-bottom:10px;
		text-align:center;
		font-size:10px
		}
		
	.onepixel {
		border-bottom:1px solid #E58113;
		border-left:1px solid #000; 
		border-top:1px solid #E58113;
		border-right:10px solid #E58113;
		background:#000 url('images/one_pixel.jpg');
		margin-bottom:10px;
		text-align:left;
		font: bold 20px verdana,helvetica,arial,sans serif;
		height: 51px;
		}
		
	#menu {
		width:240px;
		padding:0px;
		color: #ffeaa8;
		margin-left:20px;
		margin-right:-12px;		/* adjusts the margin in IE6, but not Opera 7 (was -12px) */
		float:right;			/* set float to left for left side navigation */
		/*
		IE5x PC mis-implements the box model. Because of that we sometimes have
		to perform a little CSS trickery to get pixel-perfect display across browsers.
		The following bit of code was proposed by Tantek Celik, and it preys upon a CSS
		parsing bug in IE5x PC that will prematurly close a style rule when it runs
		into the string "\"}\"". After that string appears in a rule, then, we can override
		previously set attribute values and only browsers without the parse bug will
		recognize the new values. So any of the name-value pairs above this comment
		that we need to override for browsers with correct box-model implementations
		will be listed below.
		
		We use the voice-family property because it is likely to be used very infrequently,
		and where it is used it will be set on the body tag. So the second voice-family value 
		of "inherit" will override out bogus "\"}\"" value and allow the proper value to
		cascade down from the body tag.

		The style rule immediately following this rule offers another chance for CSS2
		aware browsers to pick up the values meant for correct box-model implementations.
		It uses a CSS2 selector that will be ignored by IE5x PC.
		
		Read more at http://www.glish.com/css/hacks.asp
		*/
		voice-family: "\"}\"";
		voice-family: inherit;
		}
	html>body #menu {
		margin-right:-24px;		/* adjusts the margin in Opera 7, but not IE6 */
		}
		
	p {
		margin-top:10px;
		margin-bottom:10px;
		padding:0px 20px 0px 20px;
		text-align: justify;
		line-height: 12pt;
		}
		
	ul {
		padding-left: 0px;
		margin-left: 100px;
		list-style-image: url('images/bullet.jpg');
		}
		
	.noulindent {
		padding-left: 0px;
		margin-top: 10px;
		margin-left: 25px;
		list-style-type: square;
		}
		
	#title {						/* shifting #title and #title h1 farther up in the style sheet beneath #content breaks the layout */
		padding:0px;
		margin-right:-24px;			/* these margins are relative to the #content box */
		margin-left:20px;
		background:#000;
		width:100%; /* I have to specify a width for IE5 PC, or else it ignores the top-margin of the H1 element therein. But 100% is different in browsers without IE5x PC's broken box model, so I have to use the CSS2 selector trick to set the width to auto for those browsers*/
		voice-family: "\"}\"";
		voice-family: inherit;
		width:auto;
		}
	html>body #title {
		width:auto;
		}
		
	#title h1 {
		text-align: left;	
		font-size:18px;
		border-top:1px solid #E58113;
		border-bottom:1px solid #E58113;
		border-right:10px solid #E58113;
		border-left:1px solid #000;
		margin-top:10px;
		padding-left:10px;
		padding-right:10px;
		padding-top:0px;
		padding-bottom:0px;
		}
				
	#footer {
		text-align: center;
		}