/* CSS Document */

	body {
	margin:10px 10px 0px 10px;
	padding:0px;
		}
	
	#leftcontent {
		position: absolute;
		left:10px;
		top:61px;
		width:200px;
		background:#fff;	
		}

	#centercontent {
		background:#fff;
   		margin-left: 199px;
   		margin-right:199px;
		padding:10px;
	voice-family: "\"}\"";
		/*
		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 th*/
voice-family: inherit;
   		margin-left: 201px;
   		margin-right:201px;
		}
	html>body #centercontent {
   		margin-left: 201px;
   		margin-right:201px;
		}

	#rightcontent {
		position: absolute;
		right:10px;
		top:61px;
		width:200px;
		background:#fff;
		
		}
	
	#banner {
		height:50px;
		voice-family: "\"}\"";
		voice-family: inherit;
		}
	html>body #banner {
		height:51px;
		}
		
	p,pre {
		margin:0px 10px 10px 10px;
		}
	
	#rightcontent p {
		font-size:12px
		}

