@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #333;
}
.thrColAbsHdr #container {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left;
	background-color: #E7DED0;
} 
.thrColAbsHdr #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: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-color: #3E57A6;
	height: 170px;
}
.thrColAbsHdr #sidebar1 {
	width: 130px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* padding keeps the content of the div away from the edges */
	min-height: 700px;
	float: left;
	background-image: url(assets/lefthandbkgd.jpg);
}
.thrColAbsHdr #sidebar2 {
	width: 170px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 40px 15px 10px;
	min-height: 700px;
	color: #6C5635;
	line-height: 140%;
	float: right;
}
.thrColAbsHdr #mainContent {
	background-color: #FFF;
	line-height: 140%;
	margin: 0 220px 0 130px;
	min-height: 720px;
	padding: 10px 10px 0 10px;
	border-left: solid 2px;
	border-left-color: #CCC;
}
.thrColAbsHdr #footer {
	padding: 0;
	border-top: solid 5px;
	border-top-color: #3E57A6;
	color: #CCC;
	background-image: url(assets/mysticfooter.jpg);
	width: 780px;
	min-height: 90px;
	font-size: x-small;
	margin: 0;
} 
.thrColAbsHdr #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; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.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;
}
.footerlinkage {
	color: #CCC;
}
.brownbarlinks {
	color: #6C5635;
	font-size: 90%;
}
.tabletext {
	font-size: 110%;
}
