/* main_align - align main block in page horizontally for IE 5 and 6 */
#title {
	display:none;
}

#main_align {
    text-align: center;
}

/* main holds everything and float in the body */
#main
{
    width: 981px;
    text-align: left;   /* reset alignment done by main_align */
	background-color: #634939;

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

#block_1 {
	float: right;
	width: 690px;
	background-color: #D9CBC2;
	background-image: url(images/content_bg.jpg);
}

/* left bar */
#block_2
{
	/* float: right allows to block to position properly under IE5 and 6 position */
	float: right;
	width: 291px;
	height: 500px;
	background-image: url(images/leftbarbg.jpg);
}

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

/* page header */
#header {
	width: 981px;
	height: 110px;
	background-color: #885689;
	background-image: url(images/topbar.jpg);
}

#footer {
	clear: both;
	background-image: url(images/bottombar.jpg);
}

/* 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: 650px;
		margin-left: 20px;
		margin-right: 20px;
		margin-top: 5px;
		margin-bottom: 20px;
    }

#foot_txt {
	font-size:8pt;
	color: white;
}

#foot_txt a, #foot_txt a:link, #foot_txt a:visited {
color: white;
text-decoration: none;
cursor: pointer;
padding: 0px 5px 0px 5px;
}

#foot_txt a:hover, #foot_txt a:active
{
color: white;
text-decoration: underline;
cursor: pointer;
padding: 0px 5px 0px 5px;
}

body {
    margin: 0px;
    padding: 0px;
    background-color: #371736;
}

#content_highlight {
	background-image: url(images/content_highlight.jpg);
	background-repeat: no-repeat;
	padding-top: 10px;
}
