div#sect1
{
	position: relative;
	top: 0;
	left: 0;
	/*height:100%; why "height"? for some reason this fixes the problem that Win IE has when you put an absolutely positioned div in a relatively positioned div*/
}

div#sect2
{
	position: relative;
	top: 0;
	left: 0;
	height:100%; /*ditto*/
}

div#sect3
{
	position: relative;
	top: 0;
	left: 0;	
	height:100%; /*ditto*/
}

div#col1-1
{
	position: relative;
	top: 0;
	left: 0;
	padding: 15px;
}

div#col2-0{
	position: relative;
	top: 0;
	left: 0;
	width:60%;
	}

div#col2-1
{
	position: relative;
	top: 0px;
	left: 0%;
	width: 70%;
	min-height: 600px;
	/*hack for IE min-height*/
	height:auto;
	_height: 600px;
}

div#col2-2
{
	position: absolute; /* here is the nested absolutely positioned div */
	top: 0px;
	left: 70%;
	width: 30%;
}

div#col3-1
{
	position: relative;
	top: 0;
	left: 0;
	width: 50%;
	padding: 0px 0px 0px 15px;
}

div.content
{
	margin: 0px 0px 0px 10px;
	padding: 10px;
}