@charset "utf-8";

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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;
	font-size: 100.1%;
	background-color: #fcfcfc;
	background-image: url(images/page_bg.jpg);
	background-repeat: repeat-x;
}
.thrColFixHdr #shadow {
	background-image: url(images/shadow.png);
	background-repeat: repeat-y;
	width: 964px;
	margin: 0 auto;
	text-align: left;
}

.thrColFixHdr #container {
	width: 950px;
	margin: 0 auto;
	text-align: left;
	background-color: #FFF;
} 
.thrColFixHdr #header {
	background: #fff;
	  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 225px; /* the background color will be displayed for the length of the content in the column, but no further */
	background-image: url(images/sidebar1_bg.jpg);
	background-repeat: repeat-y;
}
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 190px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 10px; /* padding keeps the content of the div away from the edges */
}

#sidebar2 h1 {
	font-size: 1em;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	color: #0d1d32;
}
#sidebar2 p {
	font-size: 0.8em;
	line-height: 140%;
	color: #0d1d32;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 240px;
	margin-bottom: 0;
	margin-left: 240px;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
} 

