.thrColHyb #container { 
	width: 100%;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


.thrColHyb #sidebar1 {
	float: left; 
	width: 250px; /* since this element is floated, a width must be given */
	/*background: #EBEBEB; *//* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
	
}
.thrColHyb #sidebar2 {
	float: right; 
	width: 250px; /* since this element is floated, a width must be given */
	/*background: #EBEBEB; *//* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
	padding-right: 10px;
}
.thrColHyb #sidebar1 h3, .thrColHyb #sidebar1 p, .thrColHyb #sidebar2 p, .thrColHyb #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.thrColHyb #mainContent {
  margin: 0 280px 0 280px; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
  padding: 0 2em 0 2em; /* padding here creates white space "inside the box." */
  border-right-style: solid; 
  border-right-width: 1px; 
  border-left-style:solid; 
  border-left-width:1px;
  border-color:#9D9DA1;
} 
.thrColHyb #mainContent h1 { 
	/*margin-top: 0;  Though unnecessary while there's a border on the #mainContent div, you may need to uncomment this rule if the borders are removed. This will zero the margins of the first element in the #mainContent div, avoiding margin collapse - a space between divs - in this case it will create unwanted whitespace above the layout. */
}

/* Miscellaneous classes for reuse */
.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;
}
--> 