@charset "utf-8";
body  {
	background: #666666;
	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: #039;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-image: url(../images/LtCanvas.jpg);
}
.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 780px;
	margin: 0 auto;
	text-align: left;
	background-image: url(../images/LtCanvas.jpg);
	background-repeat: repeat;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header { 
	font-family: "Times New Roman", Arial, sans-serif;
	color: #FFF;
	background-color: #039;
	height:100px;
	width:100%;
	text-align: center;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
} 
.thrColAbsHdr #header h1 {
	margin: 0;
	overflow: auto;
	text-align: center;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}

.thrColAbsHdr #imageleft img {	
	display: block;
	float:left;
	border: 0px none;
	top: auto;
}

.imageright img {
	display: block;
	float:right;
	padding-bottom: 10px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 10px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	z-index: 10;
}

.imageleft img {	
	display: block;
	float:left;
	border: 0px none;
	top: auto;
}
.thrColAbsHdr #sidebar1 {
	position: relative;
	top: 0px;
	left: 0;
	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 */
	overflow: visible;
	background-color: #E3E1E3;
	padding-right: 0;
	padding-bottom: 15px;
	list-style-type: none;
	float: left;
}
.thrColAbsHdr #sidebar2 {
	position: absolute;
	top: 100px;
	width: 158px;
	background-color: #DDD;
	padding-bottom: 5px;
	left: 621px;
	border-right-style: none;
	border-top-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-left-width: 1px;
	border-left-color: #CCC;
}

.thrColAbsHdr #sidebar2 p {
	border-style:none; font-size: small;
	padding-left: 5px;
	line-height: .9em;
	margin-top:.5em; margin-bottom:.5em
	 
}

.thrColAbsHdr #mainContent {
	width: 410px;
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	position: absolute;
	top: 112px;
	left: -10px;
	color: #000;
}

.thrColAbsHdr #mainContent h1{
	text-align: center;
	vertical-align: top;
	
}
.thrColAbsHdr #footer {
	background:#DDDDDD;
	padding-top: 0;
	padding-bottom: 0;
	position: relative;
	clip: rect(auto,200px,auto,200px);
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #CCC;
	border-left-color: #CCC;
} 
.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 */
	font-size: small;
	text-align: center;
}
.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;
}

.hide		{
 			display: none;
 			}
 			
.here     {  background-color: #FFFFCC;color:#000000 }

				 
			
 /* Navbar attributes  */
 
.thrColAbsHdr #sidebar {
	float: left;
	width: 185px;
	text-align: center;
	font-size:0.75em;
	color:#FFFFFF;
	line-height: 1.5em;
	margin-right:0;
	margin-bottom:0;
	z-index: 100;
	font-family:"Trebuchet MS", Arial, sans-serif;
	vertical-align: middle;
	background-color:#000C9E;
	top: 0px;
}

.thrColAbsHdr #sidebar ul {margin: 0; background: #000C9E; list-style-type:none; padding-left:0; padding-right:0; padding-top:0;
z-index: 100; color:#FFFFFF; font-weight:bold}

.thrColAbsHdr #sidebar h4 {z-index: 100; color:#FFFFFF; margin-left:0; margin-right:3px; margin-top:0; margin-bottom:0}

.thrColAbsHdr #sidebar h5 {
font-size: 1em; color: #FFFFFF; margin-bottom: 0; text-align:left; margin-left:5px}

.thrColAbsHdr #sidebar li {
	line-height: 1.2em;
	z-index: 100;
	padding-left:0;
	padding-right:0;
	padding-top:0.25em;
	padding-bottom:0.25em;
	color:#FFFFFF;
	border-right-width: 4px;
	border-bottom-width: 1px;
	border-left-width: 2px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #003366;
	border-bottom-color: #6699FF;
	border-left-color: #036;
}

.thrColAbsHdr #sidebar a {
	text-decoration: none;
	display: block;
	z-index: 5;
	color:#FFFFFF
}
  
.thrColAbsHdr #sidebar a:link {color: #FFFFFF;}



.thrColAbsHdr #sidebar a:visited {
}
.thrColAbsHdr #sidebar a:hover {
	background:#D2E9FF;
	color: #039;
	z-index: 100;
	font-weight:bold
}
  
.thrColAbsHdr #sidebar blockquote {
text-indent: 5px; 
line-height: 1em; margin-top: 2px;padding-left: 2px; font-size: .75em;
font-family:"Trebuchet MS", Arial, sans-serif;
float: left; width: 181px;
margin-bottom: 2px;
border:1px solid #C0C0C0;
background-color: #D2E9FF;
color:#000000;

}
  
.Adobe p a a:link     { font-family: "Trebuchet MS"; color: #000000 }

.thrColAbsHdr li#section {
	background-color: #E7F5FE;
	color:#039;
	font-weight:bold
}


li.pagenow {background-color: #008000;}

#pagenow {background-color: #009999;}

.thrColAbsHdr #leftsidetext {
	font-size: x-small;
	text-align: left;
	letter-spacing: normal;
	word-spacing: normal;
	background-color: #DDD;
	border: 1px solid #039;
	color: #000;
	line-height: 1.2em;
	padding-left: 0.5em;
	padding-right: 0.2em;
	font-weight: normal;
	list-style-type: none;
	padding-bottom: 5px;
	padding-top: 5px;
	
}

.leftsidetextlink a a:link a:visited a:hover
{
	color: #039;
	text-decoration: underline;
	
}
.thrColAbsHdr #wideContent {
	width: 610px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: -100px;
	top: 30px;
	left: 0px;
	text-align: left;
	float: left;
	position: relative;
}

}
.thrColAbsHdr #galleryContent {
	width: 760px;
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 0px;
	top: 30px;
	left: 0px;
	text-align: left;
	float: left;
	position: relative;
	text-decoration: none;
}
.leftp {
	text-align: left;
}

.imagecenter img {
	display: block;
	float:right;
	padding-bottom: 10px;
	border-top-width: 0px;
	border-right-width: 0px;
	border-bottom-width: 10px;
	border-left-width: 0px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	z-index: 10;
	text-align: center;
}
.rightContent p {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	top: 10px;
	left: 0px;
	text-align: left;
	background-color: #FFF;
	border: 0px none #000;
	font-family: "Times New Roman", Times, serif;
	color: #000;
	line-height: normal;
}
#bottomtext p hr
{
	font-variant: small-caps;
	text-align: center;
	font-size: .6em;
}

.thrColAbsHdr #mainContent li a {
	text-align: center;
	vertical-align: top;
	text-decoration: none;
}
.thrColAbsHdr #container #rightContent .bottomtext p {
	text-align: center;
	font-variant: small-caps;
}
.thrColAbsHdr #rightContent h1 {
	margin-top: 0;
	margin-bottom: 0;
	padding-bottom: 0;
	border: 0px none #FFF;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #000;
	vertical-align: top;
	padding-left: 10px;
	margin-left: 10px;
	text-decoration: none;
	font-size: large;
	text-align: center;
}
.thrColAbsHdr #container #rightContent .bottomright  p {
	text-align: left;
	margin-left: 350px;
}

.gallery img {
	border: 0px none;
	left: -100px;
}
.thrColAbsHdr #rightContent {
	width: 560px;
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	position: absolute;
	top: 112px;
	left: -4px;
	color: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	text-align: left;
	background-color: #FFF;
	border: thin solid #CCC;
}
.gallery caption {
	border: 0px none;
	font-size: 1.3em;
	font-weight: bold;
}

div.navbanner {
	margin: 0;
	font-size: 80% /*smaller*/;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	position: fixed;
	top: 120px;
	left: auto;
	width: 12em;
	right: 8em;
	background-color: #039;
	padding-top: 1em;
	padding-bottom: 1em;
}
div.navbanner p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	border: thin outset #666;
	color: white;
	background-color: #039;
}

div.navbanner a, div.navbanner em {
	display: block;
	margin-top: 0;
	margin-right: 0.1em;
	margin-bottom: 0;
	margin-left: 0.1em;
}
div.navbanner a, div.navbanner em {
	border-top-width: 2px;
	border-top-style: groove;
	border-top-color: #09F;
}
div.navbanner a:first-child { border-top: none }
div.navbanner em { color: #CFC }

div.navbanner a:link { text-decoration: none; color: white }
div.navbanner a:visited { text-decoration: none; color: #CCC }
div.navbanner a:hover { background: black; color: white }
.thrColAbsHdr #container #sidebar1 #sidebar #leftsidetext p .BlueForce a {
	color: #004080;
}
.thrColAbsHdr #galleryContent a {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 0px;
	left: 0px;
	text-decoration: none;
	font-weight: bold;
}
.thrColAbsHdr #toc p  {
	line-height: 1em;
	margin-top: 6px;
	padding-top: 6px;
}

