@charset "UTF-8";

.twoColFixRtHdr #header {
	background-color: #2754D3;
	padding: 10px 0px 0px 0px;
} 
.twoColFixRtHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	
}
.twoColFixRtHdr #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #D9D9D9;
	margin: 0 auto;
} 
.twoColFixRtHdr #containerHeader {
	background-color: #2754D3;
} 
.twoColFixRtHdr #content {
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #FFFFFF;
	margin: 10px 10px 0px;
} 
.twoColFixRtHdr #columnTop {
	padding: 0px 10px;
	margin: 0px 10px;
} 
.twoColFixRtHdr #columnR {
	float: right; /* since this element is floated, a width must be given */
	width: 360px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px;
}
.twoColFixRtHdr #columnL {
	margin: 0 380px 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 sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

.twoColFixRtHdr #column1 {
	float: left; /* since this element is floated, a width must be given */
	width: 230px;
	padding: 0px 0px 0px 20px;
}
.twoColFixRtHdr #column3 {
	float: right; /* since this element is floated, a width must be given */
	width: 230px; /* 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 */
	padding: 0px 15px 0px 0px;
}
.twoColFixRtHdr #column2 {
	margin: 0 255px;
	padding: 0px 0px 0px 15px;
}
.twoColFixRtHdr #column1 img, #column2 img, #column3 img {
		margin: 0px;
}

.twoColFixRtHdr #column1 a, #column2 a, #column3 a {
	font-size: 14px;
	color: #000E78;
	text-decoration: none;
}
.twoColFixRtHdr #column1 a:hover, #column2 a:hover, #column3 a:hover {
	text-decoration: underline;
}

.twoColFixRtHdr #footer {
	width: 780px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColFixRtHdr #footer p {
	font-size: 11px;
	margin: 0px;
	padding: 0px;
	text-align: right;
	color: #FFFFFF;
}
.twoColFixRtHdr #footer h1 {
	font-size: 14px;
	margin: 0px;
	padding: 0px;
	text-align: right;
	color: #FFFFFF;
}
.twoColFixRtHdr #footer a {
	color: #FFFFFF;
	font-weight: normal;
	text-decoration: none;
}
.twoColFixRtHdr #footer a:hover {
	font-weight: normal;
	text-decoration: underline;
}


.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;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
