/* main_align - align main block in page horizontally for IE 5 and 6 */
#title
{
display:none;
}
#main_align
{
    text-align: center;
    margin-top: 8px;
}

/* main holds everything and float in the body */
#main
{
    background-color: white;
    width: 760px;
    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: 534px;
	margin-top: 5px;
}

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

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

/* page header */
#header
{
	width: 760px;
	background-image:url('images/header.jpg');
	background-repeat: no-repeat;
	border-bottom: 4px solid #222b5a;
}

#header_print
{
    display: none;
}

#header_row1
{
    height: 101px;
}

#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: 520px;
		margin-left: 10px;
		margin-bottom: 10px;
    }

#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;
    }