/* 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 
{
	width: 760px;
	background-image:url('images/background.jpg');
	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: 548px;
	
}
/* 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: 528px;
		margin:10px;
		
	
    } 
/* right bar */
#block_2
{
	/* float: right allows to block to position properly under IE5 and 6 position */
	float: left;
	width: 212px;
	
	
}
/* right bar content*/
#rblockcontent
{
	float: left;
	width:192px;
	margin-right:10px;
}
/* contains the middle columns and it allows footer to position properly under IE6 works properly */
#wrapper 
{
	float: left;
	background-color:#f8f8f8;
}
	
/* page header */
#header
{
	height: 105px;
	background-repeat:no-repeat;
	background-image:url('images/header.jpg');
	background-position:center center;
	
}
    
#clear
{
	clear: both;
}

#menu
{
	background-image:url('images/menu.jpg');
	background-repeat:no-repeat;
	height:32px;
}

#footer
{
	background-image:url('images/footer.jpg');
	height:132px;
	background-position:bottom center;
}

#footertxt {
	padding-top: 40px;
	color: #afafcf;
}
    
body 
{
    margin: 0px;
    padding: 0px;
	background-color:#1d4777;
	background-image:url('images/sidebg.jpg');
	background-repeat:repeat-x;
	background-position: top center;
}