
/*simple styles for simple browsers. primarily nn4. make darn sure everything in here is overridden in the real css*/

/*ie4.5mac has problems with this. it makes text small, and the nested list is impossibly small, even when user increases to largest. solution? ignore it. you will go nuts trying to serve different styles to nn4 and ie4.5mac. either give them both plain xhtml, or style for nn4 at the slight inconvenience of the few, or zero, remaining ie4.5mac users.*/

body, h1, h2, h3, h4, h5, h6, ol, ul, li, p {
	font-family: verdana, arial, helvetica, sans-serif;
	color: #000;
	}
body {
	margin: 0;
	padding: 10px 5% 5% 5%;
	font-size: 10pt;/* font sizing in ems, baby. if you want to change anything, just change this.*/
	/*funny thing happens at 75% and lower. opera goes to a nice small size, but moz and ie pc change almost not at all. seems 76% is as small as you can go and stay the same across browsers. poop.*/
	background-color: #FFFFFF;
/*	background-image: url(http://www.thenoodleincident.com/img/n4_upgrade.gif);use full url so both ie45mac and nn4 can find it. and for gosh sakes people, if you use this code, point to an img on _your_ server, not mine.*/
	background-repeat: no-repeat;
	background-position: top left;
	}
		
/*the following classes are to demonstrate better line heights for narrow columns*/	
.narrow1{
	width: 50%;
	line-height: 90%;
	}
.narrow2{
	width: 50%;
	line-height: 105%;
	}
	
/*typography*/
a:link {
	}
a:visited {
	}
a:active {
	}
a:hover {
	/*hover doesn't work in nn4*/
	}
h1 {
	font-size: 24pt;
	font-weight: normal;
	}
h2 {
	font-size: 18pt;
	font-weight: normal;
	}
h3 {
	font-size: 16pt;
	font-weight: normal;
	}
h4 {
	font-size: 14pt;
	font-weight: bold;
	}
h5 {
	font-size: 12pt;
	font-weight: bold;
	}
h6 {
	font-size: 10pt;
	font-weight: bold;
	}
img {
	border: 0;
	}
ol, ul, li {/*
	list-style: none;*/
	font-size: 10pt;
	line-height: 120%;
	}
p {
	font-size: 10pt;
	line-height: 120%;
	}
pre {
	font-family: monospace;
	font-size: 10pt;
	}
strong, b {
	font-weight: bold;
	}

super {vertical-align: super; font-size: 70%;}

/* Table formatting inserted here  */
.datatable {
	border: 1px solid #000000;
	border-collapse: collapse;
	width: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;	
	}
.datatable td {
	border: 1px solid #000000;	
	padding: 4px;
}
.datatable th {
	border: 1px solid #000000;
	background-color: #D1D3D2;
	font-weight: bold;
	text-align: left;
	padding-left: 4px;
}
.datatable caption {
	font: bold 0.9em Arial, Helvetica, sans-serif;
	color: #33517A;
	text-align: left;
	padding-top: 3px;
	padding-bottom: 8px;
}
.datatable tr.altrow {
	background-color: #DFE7F2;
	color: #000000;
}

.highlight {
background-color: #FFFF99;
}