@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. 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;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
	font-size:11pt;
	font-weight:normal;
	font-style:normal;
}

.AccordionPanelTab {
	background-color: #7d78a9;
	border-top: solid 1px black;
	border-bottom: solid 1px gray;
	color: #FFF;
	margin: 0px;
	padding: 2px;
	font-size:11pt;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 8px;
	height: 130px;
	color: #000;
}

.AccordionPanelOpen .AccordionPanelTab {
	background-color: #008E4F;
}

.AccordionPanelTabHover {
	color: #FFFFFF;
	background-color: #008E4F;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #FFF;
}

.AccordionFocused .AccordionPanelTab {
	background-color: #7D78A9;
}

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #7D78A9;
}

