@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 gray;
	border-bottom: solid 1px gray;
	overflow: hidden;
}

.AccordionPanel {
	margin: 0px;
	padding: 0px;
}
.AccordionPanelTab {
	background: url(../images/plus.gif) no-repeat 585px 4px #c4e6fe;
	border-top: solid 1px black;
/*	border-bottom: solid 1px gray;*/
	margin: 0px 0px;
	padding: 0px 5px;
	cursor: pointer;
	font-size:14px;
	-moz-user-select: none;
	-khtml-user-select: none;
	text-align:left;
}
.AccordionPanelContent {
	overflow: auto;
	margin: 0px;
	padding: 0px 5px;
	height: 500px;
	text-align:left;
	background:none;
}

.AccordionPanelTabHover {
	color: #000000;
	background: url(../images/minus.gif) no-repeat 585px 4px #c5c5c5;
	padding:0px 5px;
}
.AccordionPanelOpen {
	color: #000000;
/*	background: url(../images/minus.gif) no-repeat right #c5c5c5;
	padding:0px 5px;*/	
	background:none;
}
.AccordionFocused {
/*	background: url(../images/plus.gif) no-repeat right #c4e6fe;
	padding:0px 5px;*/
}
/* This is an example of how to change the appearance of the panel tab that is
 * currently open when the Accordion has focus.
 */
