

body {
	/* A style sheet foor WhatWebWhere
	taken from several sources, and modified by Ad Weterings May 2001.
	This has three columns; the middle one sizes with width of browser.
	*/
	color:#333;
	background-color:white;
	margin:20px;
	padding:0px;
    font-family: verdana, arial, helvetica, sans-serif;
   /* The following four instructions are taken from www.alistapart.com; to have sizeable fonts that work.
       Problem was that only font-size:smaller would leave you with correct sized font, but when user selects
	   View , Text size, Larger it would jump to a very large font.
	*/
    font-size:    x-small;                  /* false value for WinIE4/5 */
    voice-family: "\"}\"";                   /* trick WinIE4/5 into thinking the rule is over */
    voice-family: inherit;               /* recover from trick */
    font-size:    small ;                  /* intended value for better browsers */
	}
h1 {
	margin:0px 0px 15px 0px;
	padding:0px;
	font-size:40px;
	font-weight:900;
	color:#ccc;
	}
h2 {
	margin:0px 0px 15px 0px;
	padding:0px;
	font-size:35px;
	font-weight:900;
	color:#ccc;
	}
h3 {
	font:bold 12px/14px verdana, arial, helvetica, sans-serif;
	margin:0px 0px 5px 0px;
	padding:0px;
	}
	/*
p {
	font-family: verdana, arial, helvetica, sans-serif;
	margin:0px 0px 16px 0px;
	padding:0px;
	}
	*/
.Content>p {margin:0px;}
.Content>p+p {text-indent:30px;}

a {
	color:#09c;
	/* font-size:11px; inherit front size from body */
	font-family:verdana, arial, helvetica, sans-serif;
	font-weight:600;
	text-decoration:none;
	}
a:link {
   color:#09c;
   text-decoration:underline; 
   }
a:visited {color:#07a;}
a:hover {background-color:#eee;}
  

/* All the content boxes belong to the content class. */
#TheMiddle {
	position:relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
	width:auto;
	min-width:120px;
	margin:0px 210px 20px 170px;
	border: 0px solid black;
	background-color:white;
	padding:10px;
	z-index:2; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
	}

#leftnav {
	position:absolute;
	width:150px;
	top:20px;
	left:20px;
	border: 0px black dashed;
	background-color: #CECFCE;
	padding: 2px;
	z-index:2;

/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. 
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it. 
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style 
declaration. The incorrect IE5/Win value is above, while the correct value is 
below. See http://glish.com/css/hacks.asp for details. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:128px;
	}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
length values to user agents that exibit the parsing error exploited above yet get 
the CSS box model right and understand the CSS2 parent-child selector. */
body>#leftnav {width:128px;}
		
#rightnav {
	position:absolute;
	width:190px;
	top:20px;
	right:20px;
	border: 1px solid Red;
	background-color:#eee;
	padding:10px;
	z-index:2;
/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:168px;
	}
/* Again, "be nice to Opera 5". */
body>#rightnav {width:168px;}




