body {
	color:#333;
	background-color:white;
	margin:130px;
	padding:0px;
	font:11px courier new;
	padding:0px;
	background-image:url('images/bg.gif');
	background-repeat:no-repeat;
	background-position: left top;
	}
h1 {
	margin:0px 0px 15px 0px;
	padding:0px;
	font-size:28px;
	font-weight:900;
	color:#ccc;
	}
h2 {
	font:bold 12px/14px verdana, arial, helvetica, sans-serif;
	color:#ff6600;
	margin:0px 0px 0px 0px;
	padding:0px;
	}
h3 {
	color:#999999;
	font:30px/30px Times New Roman;
	font-weight:900;
	font-style: italic;
	}
h4 {
	color:#999999;
	font:14px/14px courier new;
	font-weight:900;
	font-style: italic;
	}
h5 {
	font:12px/14px verdana, arial, helvetica, sans-serif;
	color:#ff6600;
	margin:0px 0px 0px 0px;
	padding:0px;
	font-weight: bold;
	}
p {
	font:12px/20px verdana, arial, helvetica, sans-serif;
	color:#666666;
	margin:0px 0px 0px 0px;
	padding:0px;
	}
.Content&gt;p {margin:0px;}
.Content&gt;p+p {text-indent:30px;}

a {
	color:#ff6600;
	font-size:11px;
	font-family:verdana, arial, helvetica, sans-serif;
	font-weight:400;
	text-decoration:none;
	}
a:link {color:#ff6600;}
a:visited {color:#ff3300;}
a:hover {color: #999999; background-color:#ffffff;}

img {
	border: 1px dotted #FF6600;
	float: center;
	}

img.bordernone {
	border : 0px;
	}
  

/* All the content boxes belong to the content class. */
.content {
	position:relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
	width:auto;
	min-width:120px;
	margin:0px 130px 15px 90px;
	border: 1px dotted #FF6600;
	background-color:#ffffff;
	padding:10px;
	z-index:3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
	}

#navAlpha {
	position:absolute;
	width:150px;
	top:130px;
	left:40px;
	border:1px thin #ff6600;
	background-color:#eee;
	padding:10px;
	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 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&gt;#navAlpha {width:128px;}
		
#navBeta {
	position:absolute;
	width:190px;
	top:130px;
	right:40px;
	border:1px thin silver;
	background-color:#eee;
	padding:10px;
	z-index:1;
/* Again, the ugly brilliant hack. */
	voice-family: "\"}\"";
	voice-family:inherit;
	width:168px;
	}
/* Again, "be nice to Opera 5". */
body&gt;#navBeta {width:168px;}

<!-- Stylesheets adapted from css @ http://bluerobot.com/-->