/* 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;
	background-image: url(images/content_back.jpg);
	width: 762px;
	text-align: left;	/* reset alignment done by main_align */
	/* center alignment for standard compliant browser */
	margin-left: auto;
	margin-right: auto;
	border-bottom: 1px solid #808080;
}

#block_1
{
	float: right;
	width: 515px;
}

/* left bar */
#block_2
{
	/* float: right allows to block to position properly under IE5 and 6 position */
        float: right;
       	width: 247px;
}

/* contains the middle columns and it allows footer to position properly under IE6 works properly */
#wrapper
{
	float: right;
}

/* page header */
#header
{
	height: 180px;
	width: 762px;
	background-image:url('images/header.jpg');
}

#footer
{
	clear: both;
	width:762px;
	height: 52px;
}

/* content div in "block_1" to give appropriate padding to text */
#content {
	/*
	must set the width and margin, otherwise, IE5.* will fail.
	do not use any padding.
	*/
	width: 485px;
	margin-left: 20px;
	margin-right: 10px;
	margin-top: 5px;
}

body {
    margin: 0px;
    padding: 0px;
	padding-bottom: 10px;
	background-color: #e7f3dd;
}