@charset "UTF-8";

 
.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 */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 250px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px;
	margin: 0;
	border-top: 3px solid #575874;
	border-right: 3px solid #575874;
	border-left: 3px solid #575874;
	background-color: #EAEBE4;
	background-image: none;
	background-repeat: repeat-x;
	background-position: left top;
}
.twoColFixRtHdr #mainContent {
	margin: 0 290px 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: 20px 15px 60px;
	border-top-width: 3px;
	border-right-width: 3px;
	border-left-width: 3px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #575874;
	border-right-color: #575874;
	border-left-color: #575874;
} 

/* fix 3 pixel problem with IE 6 */
* html .twoColFixRtHdr #mainContent {
	margin-right: 287px;
}

.twoColFixRtHdr #footer {
	padding: 15px 0 15px 0;
	border: 3px solid #575874;
	background-color: #EAEBE4;
} 
.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: 0 0 0 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 14px;
}
.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;
}
