@charset "utf-8";
body  {
	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;
	font-size: 0.9em;
	font-family: "Lucida Console", Monaco, monospace;
	color: #666;
}
h1 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.2em;
	text-decoration: underline;
	font-variant: normal;
	color: #060;
}
h2 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1.2em;
	color: #333;
}
h3 {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1em;
}



.thrColFix #container {
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
	border: 1px dotted #060;
} 
.thrColFix #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 130px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 30px 5px 15px 5px; /* padding keeps the content of the div away from the edges */
	border-right: 1px dotted #060;
	border-bottom: 1px dotted #060;
}
.thrColFix #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 5px 15px 5px; /* padding keeps the content of the div away from the edges */
	border-left: 1px dotted #060;
	border-bottom: 1px dotted #060;
}
.thrColFix #mainContent {
	margin: 0px 170px 0px 140px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 0px 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.footer {
	font-size: 0.8em;
}

.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;
}
a {
	color: #3C3;
	text-decoration: underline;
}

