/* main_align - align main block in page horizontally for IE 5 and 6 */
#main_align
{
	position: absolute;
	width: 100%;

	text-align: center;
}

/* main holds everything and float in the body */
#main 
{
	width: 761px;
	text-align: left;	/* reset alignment done by main_align */
	background-color: #e3d6d2;
	background-image: url(images/content_back.gif);
	margin-top: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid black;

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

#block_1
{
	float: right;
	width: 551px;
}
 
/* left bar */
#block_2
{
	/* float: right allows to block to position properly under IE5 and 6 position */
	float: right;
	width: 180px;
	margin-right: 15px;
	margin-top: 10px;
}

/* contains the middle columns and it allows footer to position properly under IE6 works properly */
#wrapper 
{
	float: right;
}
	
/* page header */
#header
{
	width: 761px;
}
    
#footer
{
	clear: both;
}
 
/* 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: 516px;
		margin-top: 0px;
		margin-left: 15px;
		marign-right: 20px;
		margin-bottom: 15px;
    }
    
body {
	background-color: #b79a8f;
    margin: 0px;
    padding: 0px;
    }

#logo_print {
	display: none;
}

#top2_1 {
	background-image: url(images/top2_1.jpg);
	width: 210px;
	height: 204px;
	vertical-align: top;
}

#top2_2 {
	background-image: url(images/top2_2.jpg);
	width: 551px;
	height: 204px;
}
