/* 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: #EFDDC5;
    width: 829px;
    text-align: left;   /* reset alignment done by main_align */

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

/* page header */
#header
{
	width: 829px;
	height: 117px;
	background-image:url('images/top.jpg');
	background-repeat: no-repeat;
	background-color: black;
}


#block_1
{
	width: 829px;
}

/* left bar */
#block_2
{
	/* float: right allows to block to position properly under IE5 and 6 position */
	float: right;
	width: 232px;
	background-image: url(images/lefttop.jpg);
	background-repeat: no-repeat;
       background-position: top right;
	padding-top: 140px;
	padding-bottom: 50px;
}

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

#header_print
{
	display: none;
}

#menu
{
	clear: both;
	width: 829px;
	height: 46px;
	overflow: hidden;	
}

#footer
{
	clear: both;
	background-color: black;
	background-image: url(images/bottom.jpg);
	background-repeat: no-repeat;
	width: 829px;
	height: 78px;
}

/* 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: 799px;
		margin-left: 15px;
		margin-right: 15px;
		margin-bottom: 15px;
		margin-top: 8px;
    }

body {
    margin: 0px;
    padding: 0px;
    background-color: white;
    background-image: url(images/bgsite.jpg);
}
