@charset "UTF-8";

/* SpryAccordion.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved.

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

/* Keep zero */
.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 {
/* When you Click inside the panel info - Un-Selected titles are this colour*/
	background-color: #FFFFFF;
	margin: 0px;
	padding: 0px;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
}

/* 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: auto;
	margin: 0px;
	padding: 0px;
	height: 250px;
}

/* When you Click inside the panel info - Selected title is this colour*/
.AccordionPanelOpen .AccordionPanelTab {
	background-color: #ededed;
}

/* Text Hover */
.AccordionPanelTabHover {
	color: #295675;
}

/* Text Click */
.AccordionPanelOpen .AccordionPanelTabHover {
	background-color: #ededed;
	color: #295675;
}

/* Unselected Bars */
.AccordionFocused .AccordionPanelTab {
	background-color: #FFFFFF;
}

/* Selected Bar */
.AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
	background-color: #003366;
	color: #FFFFFF;
}
