body {
	margin:0px;		/* If I remove the margin & padding properties I end up with white space around entire page */
	padding:0px;
	font-size:14px;
	font-family:verdana, arial, helvetica, sans-serif;
	color:#333;
	background: white;
	}
h1 {
	margin:0px 0px 15px 0px;
	padding:0px;
	font-size:28px;
	line-height:28px;
	font-weight:500;
	letter-spacing:-0.15em;
	color:#999;
	background: white;
	}
h2 {
	margin:0px 0px 12px 0px;
	padding:0px;
	font-size:24px;
	line-height:24px;
	font-weight:500;
	letter-spacing:-0.12em;
	color:#999;
	background: white;
	}
h3 {
	margin:0px 0px 10px 0px;
	padding:0px;
	font-size:20px;
	line-height:20px;
	font-weight:400;
	letter-spacing:-0.15em;
	color:#999;
	background: white;
	}
h4 {
	margin:0px 0px 7px 0px;
	padding:0px;
	font-size:16px;
	line-height:16px;
	font-weight:600;
	letter-spacing:-0.10em;
	color:#817db5;				/* was #999 */
	background: white;
	}
h5 {
	margin:0px 0px 0px 0px;
	padding:0px;
	font-size:16px;
	line-height:16px;
	font-weight:600;
	letter-spacing:-0.05em;
	color:#669999;
	background: white;
	}
	
h6 {
	margin:0px 0px 0px 0px;
	padding:0px;
	font-size:10px;
	line-height:10px;
	font-weight:400;
	letter-spacing:-0.05em;
	color:black;
	background: transparent;
	}
	
p {
	/* margin-left:0px; */
	/* margin-bottom:0px; */
	/* padding-top:0px; */
	/* 	padding-bottom:0px; */
	}
#Content>p {margin:0px 0px 15px 0px;}				/* changing the bottom margin from 0 to 15 placed whitespace between paragraphs in Netscape but didn't affect IE */
/* #Content>p+p {text-indent:30px;}  */		/* is this what causes Netscape to indent paragraphs? Yes! */


blockquote {
	font-size:12px;
	}

a {
	color:#09c;
	background: white;
	font-size:11px;
	text-decoration:none;
	font-weight:600;
	font-family:verdana, arial, helvetica, sans-serif;
	}
a:link {
	color:#09c;
	background: white;
	}
a:visited {
	color:#07a;
	background: white;
	}
a:active {
	color:#ccc;
	background: black;
	}
a:hover {background-color:#eee;}

.center {text-align: center}		/* all HTML elements with class="center" will now be center-aligned. Only one class attribute can be specified per HTML element! */


#TopMenu {
	/* margin:0px 0px 0px 0px; This line seems to have no effect */
	padding:4px 0px 5px 20px;		/* top, right, bottom, left */
							/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height:20px; 			/* 14px + 4px + 2px = 20px */
	border-style:solid;
	border-color:black;
	border-width:1px 0px; 	/* top and bottom borders: 1px; left and right borders: 0px */
	line-height:11px;
	background:#d9d9d9;

							/* Here is the ugly brilliant hack (see below for details) */
	voice-family: "\"}\"";
	voice-family:inherit;
	height:20px; /* the correct height */
	}
							/* The "be nice to Opera 5" rule */
body>#TopMenu {height:11px;}	/* Changing this value from 14 to 11px got the top menu to properly align in Netscape without effecting IE! Don't know how it will effect Opera */


#Header {
	position:relative;			/* This declaration is required to make #Header format properly in NS6 */
	margin:2px 0px 0px 0px;
	padding:3px 0px 0px 8px;
								/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height:61px; 				/* 56px + 3px + 2px = 61px */
	border-style:solid;
	border-color:black;
	border-width:1px 0px; 		/* top and bottom borders: 1px; left and right borders: 0px */
	line-height:11px;
	background-color:#fff;		/* white */

						/* 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;
	height:56px; /* the correct height */
	}
						/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
						length values to user agents that exhibit the parsing error exploited above yet get 
						the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
						a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#Header {height:56px;}

#Content {
	margin:0px 230px 5px 30px;
	padding:25px;				/* sets padding for top, right, left, bottom, left */
	color:#000;		/* #fff=white  #000=black */
	background: white;
	}

#RightMenu {
	position:absolute;
	top:50px;
	right:50px;
	width:172px;
	padding:10px;
	font-family:verdana, arial, helvetica, sans-serif;
	font-size:10px;				/* this style doesn't effect the anchors in RightMenu */
	color:#fff;
	/* background: #fff;  /* was #b3b3b3 */  */
	border-style: solid;
	border-width: 1px;
	border-color: #000;
	line-height:17px;
									/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:150px;
	}
									/* Again, "be nice to Opera 5". */
body>#RightMenu {width:150px;}

#Footer {
	position:relative;
	font-family:verdana, arial, helvetica, sans-serif;
	font-size:10px;
	padding:17px 0px 8px 20px;
								/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height:33px; 				/* 14px + 17px + 2px = 33px */
	border-style:solid;
	border-color:black;
	border-width:1px 0px; 		/* top and bottom borders: 1px; left and right borders: 0px */
	line-height:11px;
	background-color:#eee;

						/* the hack */
	voice-family: "\"}\"";
	voice-family:inherit;
	height:14px; /* the correct height */
	}
						/* the "be nice to Opera 5" rule */
body>#Header {height:14px;}