@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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */ color: #000000; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 100%; background: #CCC url(../_images/bkgd-gray-stripe.gif) repeat; }
.twoColFixLtHdr #container { width: 1000px; margin: 25px auto 0; text-align: left; } 
.twoColFixLtHdr #header { background: url(../_images/bkgd-header.png) no-repeat;  /* 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. */ height: 220px; width: 1000px; position: relative; } 

.twoColFixLtHdr #container #header #rotating-images { height: 200px; width: 300px; position: absolute; left: 360px; top: 12px; }
.twoColFixLtHdr #header h1 { margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */ font-size: 1.2em; color: #009; text-indent: -9999px; }

.twoColFixLtHdr #container #header #logo { background: #FFF url(../_images/pf-logo.png) no-repeat center center; height: 89px; width: 239px; position: absolute; left: 27px; top: 68px; border: 2px solid #3FF; }

.twoColFixLtHdr #container #header #contact { font-size: 1em; color: #FFF; position: absolute; left: 727px; top: 69px; width: 239px; height: 89px; border: thin dotted #3FF; }

.twoColFixLtHdr #container #header #contact p { margin-top: 5px; padding-top: 5px; }
.twoColFixLtHdr #container #header #page-description{ height: 30px; width: 600px; position: absolute; left: 201px; top: 155px; text-align: center; color: #CCC; }

.twoColFixLtHdr #container #subtitle-bar { background: url(../_images/footer-bkgd.jpg); height: 40px; width: 1000px; margin-top: -10px; }

.twoColFixLtHdr #container #subtitle-bar h1 { font-size: 1em; font-variant: normal; text-align: center; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; color: #900; margin-top: 10px; font-style: italic; font-weight: bold; padding-top: 10px; }

.twoColFixLtHdr #container #internal-wrapper { background: url(../_images/secondary-internal-wrapper.jpg) repeat; margin-top: -20px; }
.twoColFixLtHdr #sidebar1 { float: left; /* since this element is floated, a width must be given */ width: 230px; /* the background color will be displayed for the length of the content in the column, but no further */ padding: 20px 5px 10px 10px; margin: 0px; color: #666; }
.twoColFixLtHdr #mainContent { margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left 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: 0 20px; } 

.twoColFixLtHdr #container #mainContent h1 { font-size: 1.2em; color: #009; padding-top: 20px; }

.twoColFixLtHdr #container #mainContent h3 { font-size: 1em; color: #009; font-weight: lighter; }

.twoColFixLtHdr #container #mainContent h2 { font-size: 1em; color: #900; }

.twoColFixLtHdr #container #mainContent p { font-size: 0.85em; color: #333; line-height: 1.5em; }

.subhead { font-weight: bold; color: #000; }

ul { font-size: .85em; color: #666; }
.twoColFixLtHdr #footer { padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */ background:#DDDDDD url(../_images/footer-bkgd.jpg) no-repeat; } 
.twoColFixLtHdr #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 */ text-align: center; font-size: .75em; color: #333; }
.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;
}
