@import "all.css"; /* just some basic formatting, no layout stuff */

h1,h2,h3,h4,h5,h6,h7 {background-color: transparent}
/* above sets the header backgrounds to transparent*/
p {background-color: transparent}
/* above sets the paragraph background to transparent*/
h1
{
font: bold small-caps 900 18px arial
}
p
{
font: small-caps 900 12px arial
}
span
{
float:left;
width:0.7em;
font-size:400%;
font-family:arial,courier;
line-height:80%;
}
/* above sets a floating first letter in each paragraph where the span command is usedThe span element has a width that is 0.7 
times the size of the current font. The font-size of the span element is 400% (quite large) and the line-height is 80%. The 
font of the letter in the span will be in "Algerian".*/

	body {
		background: white
		margin:10px 10px 0px 10px;
		padding:0px;
		}
	
	#leftcontent {
		position: absolute;
		width:25%;
		background-color: transparent;
		border:0px solid #000;
		}

	#centercontent {
		background: #00ff00 url('background1.jpg') no-repeat fixed center;
   		margin-left: 199px;
   		margin-right:199px;
		border:0px solid #000;
		/*
		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 our 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;
   		margin-left: 201px;
   		margin-right:201px;
		}
	html>body #centercontent {
   		margin-left: 201px;
   		margin-right:201px;
		}

	#rightcontent {
		position: absolute;
		width:25%;
		background-color: transparent;
		border:0px solid #000;
		}
	
	#banner {
		background-color: transparent;
		height:40px;
		border-top:1px solid #000;
		border-right:0px solid #000;
		border-left:0px solid #000;
		voice-family: "\"}\"";
		voice-family: inherit;
		height:39px;
		}
	html>body #banner {
		position: absolute;
		height:39px;
		}
		
	p,h1,pre {
		margin:0px 10px 10px 10px;
		}
		
	/* h1 {
		font-size:18px;
		padding-top:10px;
		} */
		
	#rightcontent p {
		font-size:10px
		}
