@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 {
	overflow: hidden;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}

.AccordionPanelTab {
	background-color: #fff;
	border-bottom: solid 1px #d47c2f;
	margin: 0px;
	padding: 2px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

.AccordionPanelTab h2{
	font-size: 120%;
	margin: 0.5em;
}

.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px;
	height: 200px;
	border-bottom: solid 1px #d47c2f;
}

.AccordionPanelContent .pad {
	padding: 20px 40px;
}

.AccordionPanelOpen .AccordionPanelTab {
	background-color: #efefef;
}
.AccordionPanelTabHover {
	background-color: #eee;
}
.AccordionPanelTabHover h2{
	text-decoration: underline;
}
.AccordionPanelOpen .AccordionPanelTabHover h2{
	text-decoration: underline;
}
/* for keyboard focus
.AccordionFocused .AccordionPanelTab {
	background-color: #3399FF;
}

.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #33CCFF;
} */

