@charset "UTF-8";

/* SpryAccordion.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* This is the selector for the main Accordion container. For our default style,
 * we draw borders on the left, right, and bottom. The top border of the Accordion
 * will be rendered by the first AccordionPanelTab which never moves.
 *
 * If you want to constrain the width of the Accordion widget, set a width on
 * the Accordion container. By default, our accordion expands horizontally to fill
 * up available space.
 *
 * The name of the class ("Accordion") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style the
 * Accordion container.
 */
.Accordion {
	border-left: solid 1px gray;
	border-right: solid 1px black;
	border-bottom: solid 1px gray;
	overflow: hidden;
	width: 140;
	margin-left: auto;
	margin-right: auto;


}

/* This is the selector for the AccordionPanel container which houses the
 * panel tab and a panel content area. It doesn't render visually, but we
 * make sure that it has zero margin and padding.
 *
 * The name of the class ("AccordionPanel") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel container.
*/
.AccordionPanel {
	margin: 0px;
	padding: 0px;
	background-color: #FFF;

}

/* This is the selector for the AccordionPanelTab. This container houses
 * the title for the panel. This is also the container that the user clicks
 * on to open a specific panel.
 *
 * The name of the class ("AccordionPanelTab") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel tab container.
 *
 * NOTE:
 * This rule uses -moz-user-select and -khtml-user-select properties to prevent the
 * user from selecting the text in the AccordionPanelTab. These are proprietary browser
 * properties that only work in Mozilla based browsers (like FireFox) and KHTML based
 * browsers (like Safari), so they will not pass W3C validation. If you want your documents to
 * validate, and don't care if the user can select the text within an AccordionPanelTab,
 * you can safely remove those properties without affecting the functionality of the widget.
 */
.AccordionPanelTab {
	background-color: #009;
	color:#FFF
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #FFF;
}

/* This is the selector for a Panel's Content area. It's important to note that
 * you should never put any padding on the panel's content area if you plan to
 * use the Accordions panel animations. Placing a non-zero padding on the content
 * area can cause the accordion to abruptly grow in height while the panels animate.
 *
 * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
 * Content container.
 *
 * The name of the class ("AccordionPanelContent") used in this selector is not necessary
 * to make the widget function. You can use any class name you want to style an
 * accordion panel content container.
 */
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 200px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: bold;
	line-height: normal;
	color: #006;
	text-decoration: none;

}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open. The class "AccordionPanelOpen" is programatically added and removed
 * from panels as the user clicks on the tabs within the Accordion.
 */
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #de1829; 
	color:#FFF
}

/* This is an example of how to change the appearance of the panel tab as the
 * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
 * and removed from panel tab containers as the mouse enters and exits the tab container.
 */
.AccordionPanelTabHover {
	background-color:#de1829; 
	color:#FFF
}

/* This is an example of how to change the appearance of all the panel tabs when the
 * Accordion has focus. The "AccordionFocused" class is programatically added and removed
 * whenever the Accordion gains or loses keyboard focus.
 */
.AccordionFocused .AccordionPanelTab {
	background-color: #00009c;
	color: #FFF
}

/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #31a531;
	color: #FFF
}

#Accordion1 .AccordionPanel.AccordionPanelOpen .AccordionPanelContent ul li a {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 20px;
	color: #00009c;
	text-decoration: none;
	background-color:#FFF;
	font-weight: bold;
	padding: 2 px;
}


#Accordion1 .AccordionPanel.AccordionPanelOpen .AccordionPanelContent ul li a:hover {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	line-height: 20px;
	color: #de1829;
	text-decoration: underline;
	background-color:#FFF;
	font-weight: bold;
	padding: 2 px;

}
 
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: 10;
	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 */
}
.bodytext { font-family: Trebuchet MS; font-size: 10pt; color: black; line-height: 150%; TEXT-DECORATION: none }        
.bodytext A	{ font-family: Trebuchet MS; font-size: 10pt; color: #1D3EAF; line-height: 150%; TEXT-DECORATION: underline }
.bodytext A:hover	{
	font-family: Trebuchet MS;
	font-size: 10pt;
	color: #de1829;
	line-height: 150%;
	TEXT-DECORATION: underline;
	text-align: left;
}
.copyright 	{ font-family: "Trebuchet MS"; font-size: 9pt; color: #FFF; line-height: 100%; TEXT-DECORATION: none }                
.copyright A	{ font-family: "Trebuchet MS"; font-size: 9pt; color: #FFF; line-height: 100%; TEXT-DECORATION: none }
.copyright A:hover	{ font-family: "Trebuchet MS"; font-size: 9pt; color: black; line-height: 100%; TEXT-DECORATION: underline }   

.whitetext {
	color: #FFF;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	line-height: 20px;
	font-weight: bold;
}

.thrColLiqHdr #container {
	width: 95%;  /* this will create a container 80% of the browser width */
	background: #FFFFFF; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #31a531;
	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;
} 
.thrColLiqHdr #header { 
	background: #FFFFFF; 
	padding: 0 10px;  /* 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. */
} 
.thrColLiqHdr #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 */
	background-color: #FFF;
	color: #000;
	border-bottom-style: none;
	border-top-style: none;
	border-right-style: none;
	border-left-style: none;
}

/* Tips for sidebars:
1. Since we are working in percentages, it's best not to use side padding on the sidebars. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".thrColLiqHdr #LeftNav p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.thrColLiqHdr #LeftNav {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 160px; /* since this element is floated, a width must be given */
	background:#B7B7FF;
	padding: 15px;
	height: 1000px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #000;
}
.thrColLiqHdr #RightNav {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 200px; /* since this element is floated, a width must be given */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
}
.thrColLiqHdr #LogoArea {
	float: left; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 200px; /* top and bottom padding create visual space within this div  */
	background-color: #FFF;
	background-image: url(/ptr/graphics/logo.gif);
	background-repeat: no-repeat;
	background-position: 20px;
	line-height: 100px;
	padding-top: 15px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;
}
.thrColLiqHdr #sidebar4 {
	float: right; /* this element must precede in the source order any element you would like it be positioned next to */
	width: 23%; /* since this element is floated, a width must be given */
	background: #FFF; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
}
.thrColLiqHdr #LeftNav p, .thrColLiqHdr #LeftNav h3, {
	margin-left: auto; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: auto;
	padding-left: 10px;
	padding-right: 10px;
	vertical-align: top;	
}
.thrColLiqHdr #RightNav p, .thrColLiqHdr #RightNav h3, .thrColLiqHdr #sidebar4 p, .thrColLiqHdr #sidebar4 h3 {
	margin-left: auto; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: auto;
	color: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	vertical-align: top;	
	line-height: normal;
	text-align: center;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebars is created with the left and right margins on the mainContent div.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 300px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.thrColLiqHdr #mainContent {
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 210px;
	padding-left: 10px;
	color: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
	vertical-align: top;
	line-height: normal;
	text-align: left;
	border-left-width: thin;
	border-left-style: none;
	border-left-color: #006;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 10px;
}
.thrColLiqHdr #AmazonAd {
	margin-top: auto;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	padding-left: 10px;
	height: 100px
	vertical-align: middle;
	text-align: center;
	padding-top: 30px;
	padding-right: 0;
	padding-bottom: 15px;
	padding-left: 0;

}
.thrColLiqHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #31a531;
} 
.thrColLiqHdr #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: 1px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	line-height: 18px;
	text-align: center;
}
.thrColLiqHdr #horiznav { 
	padding: 0 1px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #31a531;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	line-height: 20px;
	text-align: left;
	text-indent: 10px;

} 
.thrColLiqHdr #horiznav A { 
	padding: 0 1px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #31a531;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	line-height: 20px;
	text-align: left;
	text-indent: 10px;

} 
.thrColLiqHdr #horiznav A:hover { 
	padding: 0 1px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#31a531;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #000;
	text-decoration: none;
	line-height: 20px;
	text-align: left;
	text-indent: 10px;

} 

.thrColLiqHdr #horiznav 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: 1px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	line-height: 20px;
	text-align: left;
	text-indent: 10px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #000;
}

/* Miscellaneous classes for reuse */
.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 The floated element must precede the element it should be next to on the 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 its child floats */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.redline {
	line-height: 5px;
	background-color: #31a531;
	position: absolute;
	width: auto;
}
.bodyhead	{ font-family: Georgia; font-size: 14pt; color: #00009c; line-height: 150%; TEXT-DECORATION: none; margin-top: 0; margin-bottom: 0 }
.bodyhead A { font-family: Georgia; font-size: 14pt; color: #00009c; line-height: 150%; TEXT-DECORATION: none; margin-top: 0; margin-bottom: 0 }
.bodyhead A:hover	{ font-family: Georgia; font-size: 14pt; color: #00009c; line-height: 150%; TEXT-DECORATION: underline; margin-top: 0; margin-bottom: 0 }
