@charset "utf-8";
/* CSS Document */
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-repeat: repeat;
	background-color: #DFF4DF;
}
.thrColFixHdr #container {
	width: 900px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.thrColFixHdr #header {
	background-image: url(../page_layout/pcta_header.jpg);
	height: 165px;
	width: 900px;
} 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 5px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #030;
}
.thrColFixHdr #sidebar1 p {
	font-size: .8em;
}
.thrColFixHdr #mainContent {
	margin-top: 0;
	margin-right: 220px;
	margin-bottom: 0;
	margin-left: 190px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 10px;
} 
.thrColFixHdr #mainContent p {
	font-size: 1em;
	line-height: 16px;
}
.thrColFixHdr #mainContent h1 {
	font-size: 1.6em;
}
.thrColFixHdr #mainContent h2 {
	font-size: 1.4em;
}
.thrColFixHdr #mainContent h3 {
	font-size: 18px;
}
.thrColFixHdr #mainContent h4 {
	font-size: 1em;
}
.thrColFixHdr #mainContent ul {
	font-size: 0.85em;
}
.thrColFixHdr #mainContent li {
}
.thrColFixHdr #mainContent a:link {
	color: #334431;
	text-decoration: underline;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 1em;
	font-weight: bold;
	text-align: left;
}
.thrColFixHdr #mainContent a:visited {
	text-decoration: none;
	color: #50764d;
}
.thrColFixHdr #mainContent a:hover {
	text-decoration: underline;
	color: #800080;
}
.thrColFixHdr #mainContent a:active {
	text-decoration: none;
}

.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 180px;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
	margin: 0px;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #030;
}
.thrColFixHdr #sidebar2 p {
	font-size: 0.8em;
	line-height: 16px;
}
.thrColFixHdr #sidebar2 h1 {
	font-size: 1.4em;
	font-weight: bold;
}
.thrColFixHdr #sidebar2 h2 {
	font-size: 1em;
	font-weight: bold;
}
.thrColFixHdr #sidebar2 h3 {
	font-size: 0.9em;
	font-weight: bold;
}
.thrColFixHdr #sidebar2 ul {
	font-size: 0.85em;
}
.thrColFixHdr #sidebar2 li {
	font-size: 0.85em;
}
.thrColFixHdr #footer {
	background-image: url(../page_layout/pcta_footer.jpg);
	background-repeat: no-repeat;
	height: 95px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.thrColFixHdr #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 */
	font-size: .7em;
	text-align: center;
}
.thrColFixHdr #footer a:link {
	color: #000;
	text-decoration: none;
}
.thrColFixHdr #footer a:visited {
	text-decoration: none;
	color: #333;
}
.thrColFixHdr #footer a:hover {
	text-decoration: underline;
	color: #606;
}
.thrColFixHdr #footer a:active {
	text-decoration: none;
	color: #000;
}
.italicText {
	font-style: italic;
}
.boldText {
	font-weight: bold;
}
.boldCenteredText {
	font-weight: bold;
	text-align: center;
}
.boldCenteredText {
	font-weight: bold;
	text-align: center;
}
.boldRightText {
	font-weight: bold;
	text-align: right;
	font-size: .9em;
	padding-right: 10px;
}
.boldItalicText {
	font-style: italic;
	font-weight: bold;
}
.redText {
	color: #F00;
}

.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;
}
.centeredText {
	text-align: center;
}

.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;
}

