@charset "UTF-8";
.FHTformError {
	font-family: "Trebuchet MS";
	font-size: 12px;
	font-weight: normal;
	color: #CC3300;
	border: 1px solid #CC3300;
}

/*    This file, website, page, style, design, code (except where noted), & layout  
 *    Copyright 2008 Chris Barlow 
 *    All rights reserved  
 */
 
.FHTPageHeader {
	font-family: Arial, Helvetica, sans-serif;
	color: #011d6d;
	font-size: 18px;
	font-weight: bolder;
}
.FHTSubheading {
	font-size: 16px;
	color: #0439aa;
	font-family: Arial, Helvetica, sans-serif;	
}
.headermenu .headermenu {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-style: normal;
	color: #FFFFFF;
	text-decoration: underline;
}

.headermenubar .headermenubar {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #FFFFFF;
	text-decoration: none;
}

.headermenu:hover {text-decoration: font-size: 10px; overline; color: #066; }

.FHTtext  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #00001C;
	font-weight: normal;
}

.FHTtext:link {
	color: #316364;
	font-size: 12px;
	font-weight: normal;
}

.EventTableHeader {
	font-size: 10pt;
	font-family: "Charlemagne Std";
	font-weight: bold;
	color: #003300;
	border-bottom-width: thin;
	border-bottom-color: #DDe6e6;
}
.eventtable {
	font-size: 9pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #303300;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #DDE6E6;
	font-weight: normal;
}
.eventtableselect {
	font-size: 9pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #990000;
	font-weight: normal;
	background-color: #AABFBF;
}
.eventtablehover {
	font-size: 9pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #003390;
	font-style: normal;
	background-color: #E3EAEA;
	cursor: pointer;
}
.eventtableOdd {
	font-size: 8pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #303300;
	background-color: #FAFAFA;
}
.eventtableEven {
	font-size: 8pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #303300;
}
.eventtableName {
	color: #006666;
}
.FHTtext:visited {
	color: #008040;
	font-size: 12px;
	font-weight: normal;
}



/* SpryAccordion.css - Revision: Spry Preview Release 1.4 */

/* 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: 0x;
	border-right: 0x;
	border-bottom: 0x;
	overflow: hidden;
	border-color: #FFFFFF;
}

/* 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;
}

/* 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.
 */
.AccordionPanelTab {
	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: "Charlemagne Std";
	font-weight: normal;
	font-size: 10pt;
	color: #003300;
}

/* 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;
	background-color: #F4F7F7;
}

/* 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: #F4F7F7;
	font-weight: bolder;
}

/* 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 {
	color: #383838;
	background-color: #BCCDCD;
	cursor: hand;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #003333;
}
.FHThighlight {
	font-size: 10pt;
	font-family: "Charlemagne Std";
	font-weight: bold;
	color: #CC6600;
	background-color: #FFFFFF;
	border-left-color: #CC0000;
	border-left-style: solid;
	border-left-width: medium;
	padding-left: 4px;
}
.FHThighlightnoBar {
	font-size: 10pt;
	font-family: "Charlemagne Std";
	font-weight: bold;
	color: #CC6600;
	background-color: #FFFFFF;
}
.headermenutitle  {
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-style: normal;
	color: #FFFFFF;
}
.ETHHighlight {
	font-size: 10pt;
	font-family: "Charlemagne Std";
	font-weight: bold;
	color: #FFFFFF;
	background-color: #CC0000;
}
.FHTtextMicro {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	color: #003399;
	font-weight: normal;
}
.EventTableSubHeading {
	font-size: 10pt;
	font-family: "Charlemagne Std";
	font-weight: bold;
	color: #000000;
}
.FHTPageHeaderPF {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000000;
	font-size: 18px;
	font-weight: bolder;
}
.FHTSubheadingPF {
	font-size: 16px;
	color: #000000;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-weight: normal;
}
.FHTtextPF {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #000000;
	font-weight: normal;
}
.EventTableHeaderPF {
	font-size: 10pt;
	font-family: "Charlemagne Std";
	font-weight: bold;
	color: #000000;
}
.eventtableEvenPF {
	font-size: 8pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
}
.FHTtextMicroPF {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
	font-style: normal;
	color: #000000;
	font-weight: normal;
}
.eventtablePF {
	font-size: 9pt;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	border-top-width: thin;
	border-top-style: solid;
	border-top-color: #CCCCCC;
	font-weight: normal;
}
.EventTableHeaderUL {
	font-size: 10pt;
	font-family: "Charlemagne Std";
	font-weight: bold;
	color: #003300;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-bottom-style: solid;
	border-top-color: #dde6e6;
	border-right-color: #dde6e6;
	border-bottom-color: #dde6e6;
	border-left-color: #dde6e6;
}
.mheader {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	width: 90%;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 8px;
	text-align: left;
	margin-left: 4px;
	color: #FFFFFF;
	font-weight: bold;
}

.mitem {
	width: 90%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	margin-top: 4px;
	margin-left: 4px;
	cursor: pointer;
	cursor: hand;
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 6px;
	font-weight: bolder;
	
}

.mitem:hover {
	background-color: #7e9db2;
}

.rmenu {
	border-right-style: none;
	border-right-color: #a1b9ce;
	border-right-width: 2px;
	border-top-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-bottom-style: none;
	border-bottom-color: #a1b9ce;
	border-left-style: solid;
	border-top-color: #a1b9ce;
	border-left-color: #a1b9ce;
	margin-left: 14px;
}
.textmiddle {
vertical-align:middle; 
}
.tcontrol {
	float: left;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}
.tcontrol a{
	float: left;
	text-decoration:none;
	font-size: 12px;
	color: #003300;
	line-height: 13px;
	padding-top: 2px;
	//font-weight: bold;
	padding-left: 1px;
}
#controls {
	background:#D1DCDC;

}

#menut {
	float: left;
	margin-right:16px;
	cursor: hand;
	cursor: pointer;
	
}

.menuthover {
	color: #CC3300;
}

#right {
	float:right;
	width:200px;
	background-color: #FFFFFF;
	padding: 5px;
	border: 2px solid #FDBB40;
	text-align: center;
	margin-top: 50px;
	margin-right: 15px;
	margin-bottom: 15px;
	margin-left: 15px;
}

#left {
	float: left;
	width: 600px;
	padding: 5px;
	margin: 15px;
}

#bottom {
	clear:both;
	width:900px;
}

.clickable {
	cursor: pointer; cursor: hand;
}