@charset "utf-8";
body  {
	font: 75% Verdana, Arial, Helvetica, sans-serif;
	margin: 0;
	background-image: url(SourceImages/BGtile.png);
	background-repeat: repeat;
	/* 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;
}

para2{
	align: center;
	a:link COLOR: #0000FF;
	text-decoration: none;
}

a:link { 
	color: #000000;
	text-decoration: none;
}
a:visited { 
	color: #000000;
	text-decoration: none;
	}
a:hover { 
	color: #333333;
	text-decoration: none;
	}
a:active { 
	color: #000000;
	text-decoration: none;
}

.thrColAbsHdr #container { 
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	/*background-image:url(SourceImages/contentMidBG.png);*/
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	z-index: 0;
} 
.thrColAbsHdr #footPrints {
	position: absolute;
	height: 56px;
	width: 715px;
	z-index: 5;
	left: 254px;
	top: 234px;
	color: #000;
} 
.thrColAbsHdr #header { 
	height: 400px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	background-image:url(SourceImages/headerBG.png); 
	background-repeat: no-repeat;
	padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	z-index: 1;
	border-top: outset;
	border-left: outset;
	border-right: outset;
	border-color: #F90;
	} 
.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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	z-index: 1;
}
.thrColAbsHdr #headerTitle {
	position: absolute;
	margin: 0px; /* 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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	z-index: 6px;
	left: 235px;
	top: 44px;
	z-index: 1;
}
.thrColAbsHdr #detailBar1 {
	position: absolute;
	top: 223px;
	left: 215px;
	width: 778px; /* 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 */
	background-image: url(SourceImages/detailBar1BG.png);
	background-repeat: no-repeat;
	padding-top: 20px;
	z-index: 3;
}
.thrColAbsHdr #sidebar1 {
	position: absolute;
	top: 215px;
	left: 5px;
	width: 150px; /* 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: 15px 10px 15px 5px; /* padding keeps the content of the div away from the edges */
	z-index: 2;
}
.thrColAbsHdr #sidebar2 {
	position: absolute;
	top: 243px;
	right: 17px;
	width: 185px; /* 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: 10px 10px 10px 10px; /* padding keeps the content of the div away from the edges */
	background-image:url(SourceImages/rightSidebarBG.png);
	z-index: 2;
}
.thrColAbsHdr #mainContent {
	position: absolute;
	top: 240px;
	width: 492px;
	height:auto;
	padding: 10px 10px 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(SourceImages/mainContentBG.png);
	background-repeat: repeat;
	z-index: 2;
	left: 234px;
}
.thrColAbsHdr #mainContentWide {
	position: absolute;
	top: 240px;
	width: 715px;
	height: auto;
	padding: 10px 10px 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(SourceImages/mainContentBGWide.png);
	background-repeat: repeat;
	z-index: 2;
	left: 234px;
}
div#page {

	float:left;
	width: 715px;
	margin: 0 auto;
	text-align: left;
	border-color: #ddd;
	border-style: none solid solid;
	border-width: medium 1px 1px;
}

.thrColAbsHdr #footer { 
	height: 235px;
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-image:url(SourceImages/footerBG.png);
	background-repeat: no-repeat;
	z-index: 1;
	border-bottom: outset;
	border-left: outset;
	border-right: outset;
	border-color: #F90;
} 
.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: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.thrColAbsHdr #spacerDiv {
	height: 50px;
	z-index: 0;
}
.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;
}

