@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: 0;
	overflow: hidden;
	width: 750px;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTab {
	background-color: #E77817;
	border-top: solid 1px #FFF;
	margin: 0px;
	padding: 4px;
	cursor: pointer;
	font-size: 13px;
	font-weight: bold;
	color: #FFF;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelContent {
	margin: 0px;
	padding: 0px;
	height: 300px;
	overflow: auto;
}

.AccordionPanelOpen .AccordionPanelTab {
	background-color: #FC0;
}

.AccordionPanelTabHover {
	color: #555555;
}
.AccordionPanelOpen .AccordionPanelTabHover {
	color: #555555;
}

.AccordionFocused .AccordionPanelTab {
	background-color: #E77817;
}

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #FC0;
}
