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

#main_align {
    text-align: center;
}

/* main holds everything and float in the body */
#main
{
    background-color: white;
    width: 950px;
    text-align: left;   /* reset alignment done by main_align */

    /* center alignment for standard compliant browser */
    margin-left: auto;
    margin-right: auto;
}

#block_1
{
	float: left;
	width: 590px;
	margin-top: 0px;
}

/* left bar */
#block_2
{
	/* float: right allows to block to position properly under IE5 and 6 position */
	float: left;
	margin-top: 5px;
	width: 179px;
}

#block_3
{
	/* float: right allows to block to position properly under IE5 and 6 position */
	float: right;
	margin-top: 5px;
	width: 179px;
}

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

/* page header */
#header {
	width: 950px;
	height: 104px;
}

#header_bottom {
	width: 950px;
	height: 4px;
	font-size: 1px;
	background-image: url(images/header_bottom.gif);
}

#footer {
	clear: both;
	border-top: 1px solid #bfbfbf;
}

/* 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: 550px;
		margin-left: 20px;
		margin-right: 20px;
		margin-top: 5px;
		margin-bottom: 20px;
    }

#foot_txt
{
	padding-left:5px;
	padding-top:2px;
	padding-right:5px;
	font-family:arial;
	font-size:12px;
	color:black;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: white;
    }