@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;
	background-color: #FFFFFF;
	background-image: url(../img/ctp-bground.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.twoColFixRtHdr #container {
	width: 980px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #9999CC;
	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;
	background-color: #FFFFFF;
	background-image: url(../img/trees.jpg);
	background-position: left bottom;
	background-repeat: no-repeat;
} 
.twoColFixRtHdr #header {
	background-image: url(../img/ctp-top-bground.jpg);
	background-position: left top;
	width: 980px;
	height: 258px;
	text-align: center;
	padding: 0;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 20px;
	margin-left: 0px;
} 
.twoColFixRtHdr #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 */
}
.twoColFixRtHdr #sidebar1 {
	float: right; /* since this element is floated, a width must be given */
	width: 170px;
	background-color: #FFFFFF;
	background-image: url(../img/rightbackground.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	height: 488px;
	padding-top: 50px;
	padding-right: 25px;
	padding-bottom: 15px;
	padding-left: 25px;
	font-size: 11px;
}
.twoColFixRtHdr #sidebar1 li {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.twoColFixRtHdr #sidebar1 a {
	display: block;
	text-decoration: none;
	font-size: 11px;
	color: #003366;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
}

.twoColFixRtHdr #sidebar1 ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
}
.twoColFixRtHdr #sidebar1 li li {
	list-style-type: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.twoColFixRtHdr #sidebar1 a:hover {
	display: block;
	text-decoration: underline;
	font-size: 11px;
	color: #000033;
	background-color: #FFFFFF;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
	background-image: url(../img/sidebar-bground.jpg);
	background-repeat: repeat-y;
	background-position: right top;
}
.twoColFixRtHdr #sidebar1 li li a:hover {
	list-style-type: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 20px;
	color: #000033;

	background-color: #CBD9F3
^;
	background-color: #CBD9F3;
	text-decoration: underline;
}






.twoColFixRtHdr #mainContent {
	margin-top: 0;
	margin-right: 250px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 40px;
	font-size: 12px;
	color: #003366;
	font-family: Arial, Helvetica, sans-serif;
} 
.twoColFixRtHdr #footer {
	background-color: #99B3E6;
	padding-top: 0;
	padding-right: 220px;
	padding-bottom: 0;
	padding-left: 10px;
	border-top-width: 2px;
	border-top-style: solid;
	border-top-color: #006699;
} 
.twoColFixRtHdr #mainContent h1 {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: #336699;
	font-weight: normal;
}
.twoColFixRtHdr #mainContent a {
	color: #336633;
	text-decoration: none;
}
.twoColFixRtHdr #mainContent a:hover {
	color: #333366;
	text-decoration: underline;
}


.twoColFixRtHdr #mainContent h2 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24px;
	color: #333366;
	font-weight: normal;
}
.twoColFixRtHdr #mainContent h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #333366;
	font-weight: bold;
}


.twoColFixRtHdr #footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 11px;
	font-weight: bold;
	font-family: Arial, Helvetica, sans-serif;
	color: #666699;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 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;
}
.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;
}
.twoColFixRtHdr #sidebar1 li li a {
	list-style-type: none;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding-top: 3px;
	padding-right: 0px;
	padding-bottom: 3px;
	padding-left: 20px;
}
.subsection-box {
	background-image: url(../img/ctp-linkbox.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	font-weight: bold;
	font-size: 12px;
	padding: 8px;
}
.subsection-box-right {
	background-image: url(../img/ctp-linkbox-right.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	font-size: 12px;
}
.subsection-box-selected {
	background-image: url(../img/ctp-linkbox-selected.jpg);
	background-repeat: no-repeat;
	background-position: left bottom;
	font-weight: bold;
	color: #FFFFFF;
	font-size: 12px;
}
.businesscard {
	background-image: url(../img/ctp-card.jpg);
	font-size: 12px;
	padding-top: 70px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 100px;
	height: 127px;
	color: #336699;
	font-family: Arial, Helvetica, sans-serif;
	line-height: 20px;
}

