@charset "utf-8";

html { overflow-y: scroll; }
html { overflow: -moz-scrollbars-vertical; }

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #E0E0E0;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

	a:link {
		color: #993333;
		text-decoration: none;
		}
	a:visited {
		color: #993333;
		text-decoration: none;
		}		
	a:hover {
		color: #e99292;
		text-decoration: none;
		}
	a:active {
		color: #e99292;
		text-decoration: none;
		}

.thrColAbsHdr #container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #E0E0E0;
	background-image:url(images/backfade.jpg);
	background-repeat:repeat-x;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	
} 

.thrColAbsHdr #alignright { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 100%;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: right; /* this overrides the text-align: center on the body element. */
	
} 

.thrColAbsHdr #mainContent { 
	margin: 0px 30px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 10px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height: 610px;
	
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}