@charset "utf-8";
/* CSS Document */

/* -- show overview area styles -- */
#showInfo {
	width: 650px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	clear: both;
	background: #FFFFFF;
	margin-top: 10px;
	}
#showInfo p, #showInfo h1 {
	margin-bottom: 1em;
	}
#showInfo h1{
	font: bold 1.4em/1.8em "Trebuchet MS", Helvetica, sans-serif;
	text-transform: uppercase;
	color: #d52e36;
	}
#showInfo h2 {
	font-size:1.4em;
	color:#561216;
	margin-bottom: .5em;
	}
#showInfo h3{
	color:#000000;
	margin-bottom: .2em;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 0.9em;
	line-height: 1.6em;
	}
#showInfo h3 span{
	font: 1em/1.6em "Trebuchet MS", Helvetica, sans-serif;
	color: #028925;
	padding-left: 2em;
	}
#showInfo p{
	font: .9em/1.6em Georgia, "Times New Roman", Times, serif;
	color: #333;
	}
#showInfo table {
	background-color: #0000FF;
}
#showInfo td {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	font-style: oblique;
	font-weight: normal;
}

#showInfo th {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-style: normal;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: underline;
}


/* -- style the spry content regions -- */
#showInfo .leftCol{
	float: left;
	width: 310px;
	overflow: scroll;
	height: 600px;
	background: #CCFFFF;
	}
#showInfo .rightCol{
	float: right;
	width: 330px;
	margin-left: 10px;
	background: #CCFFFF;
	}
/* -- styling for spry table -- */
#showInfo .leftCol .odd {
	background-color: #CCFFFF;
	}
#showInfo .leftCol .even {
	background-color: #99ffff;
	}
#showInfo .leftCol .top{
	background: #7d9bb2;
	color: #fff;
	}
#showInfo .leftCol .hover{
	background-color: #FFFF66;
	cursor: pointer;
	}
#showInfo .leftCol .selected{
	color: #d52e36;
	background-color: #C8C8C8;
	}

#showInfo .leftCol table_legend .textbox
{
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	font-style: normal;
	font-weight: bold;
	color: #FF0000;
}

#showInfo .leftCol table {
	border-style: none;
}
#showInfo .leftCol table tr {
	background: #cce9ff;
}
#showInfo .leftCol legend {
	text-align: center;
	font-style: oblique;
	color: #FF0000;
}
.imgwrapper h3 {
	text-align: center;
	font-size: 14px;
	text-decoration: underline;
	font-weight: bold;
}
.table_legend {
	border: thin solid #FF0000;
	width: 300px;
	font-size: 12px;
	font-style: oblique;
	font-weight: bold;
	background: #7d9bb2;
	padding-top: 10px;
	padding-bottom: 10px;
	height: auto;
}

#showInfo .leftCol .textbox
{
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #000000;
}


#showInfo .leftCol h3 {
	text-align: center;
	font-size: 14px;
	text-decoration: underline;
	font-weight: bold;
	color: #ffffff;
}

/* ---------------------------- Accordion Styles here --------------------------- */

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

/* 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 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: scroll;
	margin: 0px;
	padding: 0px;
	height: 250px;
	text-align: left;
}
.AccordionPanelContent h3 {
	text-align: center;
	font-size: 14px;
	text-decoration: underline;
	font-weight: bold;
}

/* 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: #7d9bb2 url(../images/arrowOpen.png) no-repeat;
}

/* 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: #7d9bb2 url(../images/arrowClosed.png) no-repeat;
	text-align: center;
	color: #CC3300;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	background: #7d9bb2 url(../images/arrowClosed.png) no-repeat;
	color: #555555;
}

/* 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: #cce9ff url(../images/arrowClosed.png) no-repeat;
}

/* 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: url(../images/arrowOpen.png) no-repeat;
	background-color: #7d9bb2;
}

