leftcontent

#leftcontent {
position: absolute;
left:1%;
width:20%;
top:50px;
background:#fff;
	}

Analysis of funding is inapproriate in this effort as assets are repurposed in statements who existance owe their identity to their obscurity. Obfuscation of responsibility underlines these offerings, whose primary function is to generate revenue and secondarily to shift accountability downstream.

rightcontent

#rightcontent {
position: absolute;
left:22%;
width:28%;
top:50px;
background:#fff;
	}

Blocks on this page are positioned using the absolute scheme, with positioning and width values in terms of percentages of document dimensions. This technique can actually be used to provide as many columns on a page as you like. Drawback #1) it gets difficult quickly if you want to make any of the columns a fixed width. Drawback #2) it relies heavily on percentages, which the various browsers all calculate differently, so you can't place your columns very precisely. Still, a very useful technique, especially if you don't want borders and different background colors for your columns.

View the source to see how the layout was done.