/* main_align - align main block in page horizontally for IE 5 and 6 */
#main_align
{
    text-align: center;
    background-image:url('images/top_bg.png');
	background-repeat:repeat-x;
}

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

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

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

/* page header */
#header
{
	width: 770px;
	height: 186px;
    background-image:url('images/top_bg.png');
}

#header_top
{
	height: 100px;
	overflow: hidden;
}

#logo
{
	width: 328px;
	height: 72px;
	background-image:url('images/logo.png');
}

#coins
{
	width: 282px;
	height: 101px;
	background-image:url('images/top_coins.png');
	margin-top: -72px;
	float: right;
}

#header_print
{
    display: none;
}

#menu {
	height: 38px;
	clear: both;
}

#menu_left {
	background-image:url('images/menu_left.png');
	width:2px;
	height: 38px;
	float: left;
}

#menu_content {
	background-image:url('images/menu_bg.png');
	height: 38px;
	float: left;
}

#menu_right {
	background-image:url('images/menu_right.png');
	width: 9px;
	height: 38px;
	float: left;
}

#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: 530px;
		margin-left: 0px;
		margin-right: 30px;
		margin-bottom: 20px;
    }

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