/* main_align - align main block in page horizontally for IE 5 and 6 */
#main_align
{
	text-align: center;
}

/* main holds everything and float in the body */
#main 
{
	background-color: white;
	width: 980px;
	text-align: left;	/* reset alignment done by main_align */
    
	/* center alignment for standard compliant browser */
	margin-left: auto;
	margin-right: auto;
    
}

#block_1
{
	float: right;
	width: 765px;
}
 
/* left bar */
#block_3
{
	/* float: right allows to block to position properly under IE5 and 6 position */
	float: right;
	width: 200px;
}

#block_2
{
 float: left;
 width: 200px;
}


/* contains the middle columns and it allows footer to position properly under IE6 works properly */
#wrapper 
{
}
	
/* page header */
#header
{
}

#footer
{
	clear: both;
}

#content
    {
		/*
			must set the width and margin, otherwise, IE5.* will fail. 
			do not use any padding.
		*/
		width: 750px;
		margin: 10px 0px 10px 0px;
    }
    
body {
    margin: 0px;
    padding: 0px;
    background-color: white;
    }
