@charset "utf-8";
/* CSS Document */

.twoColFixRtHdr #container { 
	width: 970px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #header {
	padding: 0 0 0 5px;
	height: 150px;
	background-image: url( '/images/banner.jpg' );
	background-repeat: no-repeat;
}
.twoColFixRtHdr #navsidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 170px; /* 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: #ddd; /* the background color will be displayed for the length of the content in the column, but no further */
	margin-top: 20px;
	padding: 15px 10px;
}
.twoColFixRtHdr #mainContent { 
	background: #fff;
	border-right: 2px dotted #4d71a5;
	margin: 10px 200px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the navsidebar div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #navsidebar space when the content in #navsidebar ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	font-size: 12px;
	width: 720px;
} 
.twoColFixRtHdr #footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	margin-top: 15px;
	font-size: 10px;
} 
.twoColFixRtHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

