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

/* main holds everything and float in the body */
#main
{
	width: 771px;
	text-align: left;	/* reset alignment done by main_align */
	border-bottom: 1px solid black;
	background-image:url('images/content_back.gif');
	background-repeat:repeat-y;
	/* center alignment for standard compliant browser */
	margin-left: auto;
	margin-right: auto;
}

#block_1
{
	float: left;
	width: 570px;
}

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


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

#footer
{
	clear: both;
	width:771px;
}

/* 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:10px;
    margin-top: 0px;
}

table.contentborder {
 border-left: 1px solid black;
 border-right: 1px solid black;
}

div#menubarshadow {
	height: 7px;
	background-image: url(images/menu_shadow.jpg);
}

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