@charset "UTF-8";

/* 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. */
.Accordion1 {
	border-left: solid 1px #333333;
	border-right: solid 1px #333333;
	border-bottom: solid 1px #333333;
	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 
 * maintain zero margin and padding.
 */
.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.
 */
.AccordionPanelTab {
	color: #87ab35;
	background-color: #333333;
	font-size: 0.8em;
	font-weight: normal;
	border-top: solid 1px #333333;
	border-bottom: solid 1px #333333;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

span.sourcename {
	color: #f39823;
	background-color: inherit;
	font-weight: bold;
	font-size: 1.2em;
}

/* This is the selector for a Panel's Content area. Don't put any padding on the panel's content area to retain 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.
 * MUST specify a height on the Accordion Panel Content container.
 */
.AccordionPanelContent {
	font-size: 0.8em;
	font-weight: normal;
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 150px;
}

/* Change appearance of 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: #333333;
}

/* Change appearance of 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: #f39823;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #f39823;
}

/* Change appearance of all 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: #333333;
}

/* Change appearance of panel tab that is currently open when the Accordion has focus.
 */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #333333;
}
